diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-26 22:46:44 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-26 22:46:44 +0100 |
commit | f513f69f09b091f7c29f607d5c32ff8e35e8282a (patch) | |
tree | 58e77618449280c4ae1b1f6095d80a352ea82d31 /pyload/plugins/hoster/ZShareNet.py | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-f513f69f09b091f7c29f607d5c32ff8e35e8282a.tar.xz |
Fix previous merge
Diffstat (limited to 'pyload/plugins/hoster/ZShareNet.py')
-rw-r--r-- | pyload/plugins/hoster/ZShareNet.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pyload/plugins/hoster/ZShareNet.py b/pyload/plugins/hoster/ZShareNet.py new file mode 100644 index 000000000..663377102 --- /dev/null +++ b/pyload/plugins/hoster/ZShareNet.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- + +from pyload.plugins.internal.DeadHoster import DeadHoster, create_getInfo + + +class ZShareNet(DeadHoster): + __name__ = "ZShareNet" + __type__ = "hoster" + __version__ = "0.21" + + __pattern__ = r'https?://(?:ww[2w]\.)?zshares?\.net/.+' + + __description__ = """ZShare.net hoster plugin""" + __license__ = "GPLv3" + __authors__ = [("espes", None), + ("Cptn Sandwich", None)] + + +getInfo = create_getInfo(ZShareNet) |