diff options
Diffstat (limited to 'pyload/plugin/hoster/ShragleCom.py')
-rw-r--r-- | pyload/plugin/hoster/ShragleCom.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/ShragleCom.py b/pyload/plugin/hoster/ShragleCom.py new file mode 100644 index 000000000..139283cd1 --- /dev/null +++ b/pyload/plugin/hoster/ShragleCom.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster, create_getInfo + + +class ShragleCom(DeadHoster): + __name = "ShragleCom" + __type = "hoster" + __version = "0.22" + + __pattern = r'http://(?:www\.)?(cloudnator|shragle)\.com/files/(?P<ID>.*?)/' + + __description = """Cloudnator.com (Shragle.com) hoster plugin""" + __license = "GPLv3" + __authors = [("RaNaN", "RaNaN@pyload.org"), + ("zoidberg", "zoidberg@mujmail.cz")] + + +getInfo = create_getInfo(ShragleCom) |