diff options
author | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-10-24 00:23:11 +0200 |
---|---|---|
committer | GammaC0de <GammaC0de@users.noreply.github.com> | 2015-10-24 00:23:11 +0200 |
commit | 3663fc54c2950d1f6ba39468e2f34419cc07980f (patch) | |
tree | 53de2a5a52af024dfbfe5f86238e36a4d0c1def9 | |
parent | Fix https://github.com/pyload/pyload/issues/2034#issuecomment-150610936 (diff) | |
download | pyload-3663fc54c2950d1f6ba39468e2f34419cc07980f.tar.xz |
[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) |