forked from pyload/pyload
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDataHu.py
More file actions
36 lines (24 loc) · 985 Bytes
/
Copy pathDataHu.py
File metadata and controls
36 lines (24 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
#
# Test links:
# http://data.hu/get/6381232/random.bin
import re
from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class DataHu(SimpleHoster):
__name__ = "DataHu"
__type__ = "hoster"
__version__ = "0.04"
__status__ = "testing"
__pattern__ = r'http://(?:www\.)?data\.hu/get/\w+'
__config__ = [("use_premium", "bool", "Use premium account if available", True)]
__description__ = """Data.hu hoster plugin"""
__license__ = "GPLv3"
__authors__ = [("crash", None),
("stickell", "l.stickell@yahoo.it")]
INFO_PATTERN = ur'<title>(?P<N>.*) \((?P<S>[^)]+)\) let\xf6lt\xe9se</title>'
OFFLINE_PATTERN = ur'Az adott f\xe1jl nem l\xe9tezik'
LINK_FREE_PATTERN = r'<div class="download_box_button"><a href="(.+?)">'
def setup(self):
self.resume_download = True
self.multiDL = self.premium
getInfo = create_getInfo(DataHu)