diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-24 02:26:10 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-24 02:26:10 +0200 |
commit | 13d3674f338f368fa2134de022b30fd4a2990905 (patch) | |
tree | 53de2a5a52af024dfbfe5f86238e36a4d0c1def9 | |
parent | Fix https://github.com/pyload/pyload/issues/2034#issuecomment-150610936 (diff) | |
parent | [DeadHoster] StahnuTo (diff) | |
download | pyload-13d3674f338f368fa2134de022b30fd4a2990905.tar.xz |
Merge pull request #2102 from GammaC0de/patch-6
[DeadHoster] StahnuTo
-rw-r--r-- | module/plugins/hoster/StahnuTo.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/module/plugins/hoster/StahnuTo.py b/module/plugins/hoster/StahnuTo.py new file mode 100644 index 000000000..8296de5e3 --- /dev/null +++ b/module/plugins/hoster/StahnuTo.py @@ -0,0 +1,16 @@ +from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo + +class StahnuTo(DeadHoster): + __name__ = "StahnuTo" + __type__ = "hoster" + __version__ = "0.13" + __status__ = "stable" + + __pattern__ = r"http://(\w*\.)?stahnu.to/(files/get/|.*\?file=)([^/]+).*" + __config__ = [] #@TODO: Remove in 0.4.10 + + __description__ = """stahnu.to""" + __license__ = "GPLv3" + __author_name__ = ("zoidberg") + +getInfo = create_getInfo(StahnuTo) |