diff options
Diffstat (limited to 'pyload/plugin/hoster/NahrajCz.py')
-rw-r--r-- | pyload/plugin/hoster/NahrajCz.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/NahrajCz.py b/pyload/plugin/hoster/NahrajCz.py new file mode 100644 index 000000000..6e187e268 --- /dev/null +++ b/pyload/plugin/hoster/NahrajCz.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster, create_getInfo + + +class NahrajCz(DeadHoster): + __name = "NahrajCz" + __type = "hoster" + __version = "0.21" + + __pattern = r'http://(?:www\.)?nahraj\.cz/content/download/.+' + + __description = """Nahraj.cz hoster plugin""" + __license = "GPLv3" + __authors = [("zoidberg", "zoidberg@mujmail.cz")] + + +getInfo = create_getInfo(NahrajCz) |