diff options
author | guidobelix <guidobelix@hotmail.it> | 2014-10-15 02:05:25 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-15 02:05:25 +0200 |
commit | e7e59f4f7c3211920016bb3e5e063f954a19c92e (patch) | |
tree | d5b4cedffa28322978ac63f1a340207bf1b97512 /module/plugins/accounts | |
parent | [XFSPAccount] Improve TRAFFIC_LEFT_PATTERN (diff) | |
download | pyload-e7e59f4f7c3211920016bb3e5e063f954a19c92e.tar.xz |
New plugin RapidfileshareNet (account + hoster)
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/RapidfileshareNet.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/accounts/RapidfileshareNet.py b/module/plugins/accounts/RapidfileshareNet.py new file mode 100644 index 000000000..56ae80cf0 --- /dev/null +++ b/module/plugins/accounts/RapidfileshareNet.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from module.plugins.internal.XFSPAccount import XFSPAccount + + +class RapidfileshareNet(XFSPAccount): + __name__ = "RapidfileshareNet" + __type__ = "account" + __version__ = "0.01" + + __description__ = """Rapidfileshare.net account plugin""" + __license__ = "GPLv3" + __authors__ = [("guidobelix", "guidobelix@hotmail.it")] + + + HOSTER_URL = "http://www.rapidfileshare.net/" + + TRAFFIC_LEFT_PATTERN = r'>Traffic available today:</TD><TD><label for="name">(?P<S>.+?)</label></TD></TR>' |