diff options
Diffstat (limited to 'module/plugins/hoster/FreevideoCz.py')
-rw-r--r-- | module/plugins/hoster/FreevideoCz.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/module/plugins/hoster/FreevideoCz.py b/module/plugins/hoster/FreevideoCz.py new file mode 100644 index 000000000..86c30e64c --- /dev/null +++ b/module/plugins/hoster/FreevideoCz.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster, create_getInfo + + +class FreevideoCz(DeadHoster): + __name__ = "FreevideoCz" + __type__ = "hoster" + __version__ = "0.30" + + __pattern__ = r'http://(?:www\.)?freevideo\.cz/vase-videa/.+' + + __description__ = """Freevideo.cz hoster plugin""" + __license__ = "GPLv3" + __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] + + +getInfo = create_getInfo(FreevideoCz)
\ No newline at end of file |