diff options
Diffstat (limited to 'pyload/plugins/hoster/CramitIn.py')
-rw-r--r-- | pyload/plugins/hoster/CramitIn.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/pyload/plugins/hoster/CramitIn.py b/pyload/plugins/hoster/CramitIn.py deleted file mode 100644 index dafe2e5ed..000000000 --- a/pyload/plugins/hoster/CramitIn.py +++ /dev/null @@ -1,24 +0,0 @@ -# -*- coding: utf-8 -*- - -from pyload.plugins.internal.XFSHoster import XFSHoster, create_getInfo - - -class CramitIn(XFSHoster): - __name = "CramitIn" - __type = "hoster" - __version = "0.07" - - __pattern = r'http://(?:www\.)?cramit\.in/\w{12}' - - __description = """Cramit.in hoster plugin""" - __license = "GPLv3" - __authors = [("zoidberg", "zoidberg@mujmail.cz")] - - - HOSTER_DOMAIN = "cramit.in" - - INFO_PATTERN = r'<span class=t2>\s*(?P<N>.*?)</span>.*?<small>\s*\((?P<S>.*?)\)' - LINK_PATTERN = r'href="(http://cramit\.in/file_download/.*?)"' - - -getInfo = create_getInfo(CramitIn) |