diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-02-09 17:21:07 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-02-09 17:21:07 +0100 |
commit | 5b87dd18c173fa02574d97b7c1680c95f8d69424 (patch) | |
tree | 3f4114c8ad51a19de15429898aa2015f1e88a2f0 /module/plugins/hoster/Share4webCom.py | |
parent | filefactory premium, uloz.to new url pattern (diff) | |
download | pyload-5b87dd18c173fa02574d97b7c1680c95f8d69424.tar.xz |
closed #534 - pyload crash, depositfiles 20gb limit workaround
Diffstat (limited to 'module/plugins/hoster/Share4webCom.py')
-rw-r--r-- | module/plugins/hoster/Share4webCom.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/module/plugins/hoster/Share4webCom.py b/module/plugins/hoster/Share4webCom.py new file mode 100644 index 000000000..ef9c2acf8 --- /dev/null +++ b/module/plugins/hoster/Share4webCom.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- + +from module.plugins.hoster.UnibytesCom import UnibytesCom +from module.plugins.internal.SimpleHoster import create_getInfo + +class Share4webCom(UnibytesCom): + __name__ = "Share4webCom" + __type__ = "hoster" + __pattern__ = r"http://(www\.)?share4web\.com/get/\w+" + __version__ = "0.1" + __description__ = """Share4web.com""" + __author_name__ = ("zoidberg") + + DOMAIN = 'http://www.share4web.com' + +getInfo = create_getInfo(UnibytesCom)
\ No newline at end of file |