diff options
Diffstat (limited to 'pyload/plugin/hoster/ZShareNet.py')
-rw-r--r-- | pyload/plugin/hoster/ZShareNet.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/ZShareNet.py b/pyload/plugin/hoster/ZShareNet.py new file mode 100644 index 000000000..a2461fb6a --- /dev/null +++ b/pyload/plugin/hoster/ZShareNet.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster + + +class ZShareNet(DeadHoster): + __name = "ZShareNet" + __type = "hoster" + __version = "0.21" + + __pattern = r'https?://(?:ww[2w]\.)?zshares?\.net/.+' + __config = [] + + __description = """ZShare.net hoster plugin""" + __license = "GPLv3" + __authors = [("espes", ""), + ("Cptn Sandwich", "")] |