summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/ChipDe.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/ChipDe.py')
-rw-r--r--module/plugins/hoster/ChipDe.py31
1 files changed, 16 insertions, 15 deletions
diff --git a/module/plugins/hoster/ChipDe.py b/module/plugins/hoster/ChipDe.py
index fcb84a300..8e13b914d 100644
--- a/module/plugins/hoster/ChipDe.py
+++ b/module/plugins/hoster/ChipDe.py
@@ -4,21 +4,22 @@
import re
from module.plugins.Crypter import Crypter
+
class ChipDe(Crypter):
- __name__ = "ChipDe"
- __type__ = "container"
- __pattern__ = r"http://(?:www\.)?chip.de/video/.*\.html"
- __version__ = "0.1"
- __description__ = """Chip.de Container Plugin"""
- __author_name__ = ('4Christopher')
- __author_mail__ = ('4Christopher@gmx.de')
+ __name__ = "ChipDe"
+ __type__ = "container"
+ __pattern__ = r"http://(?:www\.)?chip.de/video/.*\.html"
+ __version__ = "0.1"
+ __description__ = """Chip.de Container Plugin"""
+ __author_name__ = ('4Christopher')
+ __author_mail__ = ('4Christopher@gmx.de')
- def decrypt(self, pyfile):
- self.html = self.load(pyfile.url)
- try:
- url = re.search(r'"(http://video.chip.de/\d+?/.*)"', self.html).group(1)
- self.logDebug('The file URL is %s' % url)
- except:
- self.fail('Failed to find the URL')
+ def decrypt(self, pyfile):
+ self.html = self.load(pyfile.url)
+ try:
+ url = re.search(r'"(http://video.chip.de/\d+?/.*)"', self.html).group(1)
+ self.logDebug('The file URL is %s' % url)
+ except:
+ self.fail('Failed to find the URL')
- self.packages.append((self.pyfile.package().name, [ url ], self.pyfile.package().folder))
+ self.packages.append((self.pyfile.package().name, [url], self.pyfile.package().folder))