58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
ls = re.findall("""
"pStop\(\)" \s href="(.*?)">
.*?
pics/((?!play_triangle)\w+)
.*?
120%'>([^<>]+)</span>
""", tr, re.X|re.S)
print ls
if len(ls):
homepage, country, title = ls[0]
r.append(dict(
homepage = homepage,
playing = country,
title = unhtml(title),
url = "urn:delicast",
|
<
|
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
ls = re.findall("""
"pStop\(\)" \s href="(.*?)">
.*?
pics/((?!play_triangle)\w+)
.*?
120%'>([^<>]+)</span>
""", tr, re.X|re.S)
if len(ls):
homepage, country, title = ls[0]
r.append(dict(
homepage = homepage,
playing = country,
title = unhtml(title),
url = "urn:delicast",
|