diff options
Diffstat (limited to 'module/plugins/hoster/FilezyNet.py')
-rw-r--r-- | module/plugins/hoster/FilezyNet.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/hoster/FilezyNet.py b/module/plugins/hoster/FilezyNet.py new file mode 100644 index 000000000..1fcc9363d --- /dev/null +++ b/module/plugins/hoster/FilezyNet.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster, create_getInfo + + +class FilezyNet(DeadHoster): + __name__ = "FilezyNet" + __type__ = "hoster" + __version__ = "0.20" + + __pattern__ = r'http://(?:www\.)?filezy\.net/\w{12}' + + __description__ = """Filezy.net hoster plugin""" + __license__ = "GPLv3" + __authors__ = [] + + +getInfo = create_getInfo(FilezyNet) |