diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-23 02:08:51 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-23 02:08:51 +0100 |
commit | 6b4527b5603b84dd26e40d85264c4d35778ad275 (patch) | |
tree | 08296147f697ad9a1892de71ff5898f984cbd93e | |
parent | Fixes about create_getInfo (diff) | |
download | pyload-6b4527b5603b84dd26e40d85264c4d35778ad275.tar.xz |
[ZShareNet] Dead hoster
-rw-r--r-- | module/plugins/hoster/ZShareNet.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/module/plugins/hoster/ZShareNet.py b/module/plugins/hoster/ZShareNet.py new file mode 100644 index 000000000..dc96facbe --- /dev/null +++ b/module/plugins/hoster/ZShareNet.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- + +from module.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) |