diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
commit | 46eaa480d1f80b7aa701d756de953050f7885f0c (patch) | |
tree | 3625e7f96a4712b65c8bb008a86087ddf4a99888 /pyload/plugin/hoster/Share4WebCom.py | |
parent | Improve theme structure a bit (diff) | |
download | pyload-46eaa480d1f80b7aa701d756de953050f7885f0c.tar.xz |
Fix filename case
Diffstat (limited to 'pyload/plugin/hoster/Share4WebCom.py')
-rw-r--r-- | pyload/plugin/hoster/Share4WebCom.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/Share4WebCom.py b/pyload/plugin/hoster/Share4WebCom.py new file mode 100644 index 000000000..4748c6e2a --- /dev/null +++ b/pyload/plugin/hoster/Share4WebCom.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.hoster.UnibytesCom import UnibytesCom +from pyload.plugin.internal.SimpleHoster import create_getInfo + + +class Share4webCom(UnibytesCom): + __name__ = "Share4webCom" + __type__ = "hoster" + __version__ = "0.11" + + __pattern__ = r'https?://(?:www\.)?share4web\.com/get/\w+' + + __description__ = """Share4web.com hoster plugin""" + __license__ = "GPLv3" + __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] + + + HOSTER_DOMAIN = "share4web.com" + + +getInfo = create_getInfo(UnibytesCom) |