11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#
import re
import http
from config import conf
from channels import *
from channels import __print__
from xml.sax.saxutils import unescape
|
|
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#
import re
import http
from config import conf
from channels import *
from config import __print__, dbg
from xml.sax.saxutils import unescape
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
.*? /formats/(\w+).png"
.*? title="([^">]+)">([^<>]+)</a>
.*? >Rated</a>\s*(\d+)
""", re.X|re.S)
for uu in rx_mod.findall(html):
(url, id, fmt, title, file, rating) = uu
__print__( uu )
entries.append({
"genre": cat,
"url": url,
"id": id,
"format": self.mime_fmt(fmt) + "+zip",
"title": title,
"playing": file,
|
|
|
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
.*? /formats/(\w+).png"
.*? title="([^">]+)">([^<>]+)</a>
.*? >Rated</a>\s*(\d+)
""", re.X|re.S)
for uu in rx_mod.findall(html):
(url, id, fmt, title, file, rating) = uu
__print__( dbg.DATA, uu )
entries.append({
"genre": cat,
"url": url,
"id": id,
"format": self.mime_fmt(fmt) + "+zip",
"title": title,
"playing": file,
|