summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/FileshareInUa.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/hoster/FileshareInUa.py')
-rw-r--r--pyload/plugins/hoster/FileshareInUa.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/pyload/plugins/hoster/FileshareInUa.py b/pyload/plugins/hoster/FileshareInUa.py
new file mode 100644
index 000000000..08e10dccb
--- /dev/null
+++ b/pyload/plugins/hoster/FileshareInUa.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+
+from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo
+
+
+class FileshareInUa(DeadHoster):
+ __name__ = "FileshareInUa"
+ __type__ = "hoster"
+ __version__ = "0.02"
+
+ __pattern__ = r'https?://(?:www\.)?fileshare\.in\.ua/\w{7}'
+
+ __description__ = """Fileshare.in.ua hoster plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("fwannmacher", "felipe@warhammerproject.com")]
+
+
+getInfo = create_getInfo(FileshareInUa)