summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hoster/StahnuTo.py16
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)