diff options
Diffstat (limited to 'pyload/plugin/hoster/LomafileCom.py')
-rw-r--r-- | pyload/plugin/hoster/LomafileCom.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pyload/plugin/hoster/LomafileCom.py b/pyload/plugin/hoster/LomafileCom.py new file mode 100644 index 000000000..de56d2d58 --- /dev/null +++ b/pyload/plugin/hoster/LomafileCom.py @@ -0,0 +1,17 @@ +# -*- coding: utf-8 -*- + +from pyload.plugin.internal.DeadHoster import DeadHoster + + +class LomafileCom(DeadHoster): + __name = "LomafileCom" + __type = "hoster" + __version = "0.52" + + __pattern = r'http://lomafile\.com/\w{12}' + __config = [] + + __description = """Lomafile.com hoster plugin""" + __license = "GPLv3" + __authors = [("nath_schwarz", "nathan.notwhite@gmail.com"), + ("guidobelix", "guidobelix@hotmail.it")] |