diff options
Diffstat (limited to 'pyload/plugin/hoster/UnrestrictLi.py')
-rw-r--r-- | pyload/plugin/hoster/UnrestrictLi.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/UnrestrictLi.py b/pyload/plugin/hoster/UnrestrictLi.py new file mode 100644 index 000000000..3735de6df --- /dev/null +++ b/pyload/plugin/hoster/UnrestrictLi.py @@ -0,0 +1,15 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster + + +class UnrestrictLi(DeadHoster): + __name = "UnrestrictLi" + __type = "hoster" + __version = "0.23" + + __pattern = r'https?://(?:www\.)?(unrestrict|unr)\.li/dl/[\w^_]+' + + __description = """Unrestrict.li multi-hoster plugin""" + __license = "GPLv3" + __authors = [("stickell", "l.stickell@yahoo.it")] |