do not reload by default
This commit is contained in:
parent
0695d80ce9
commit
0f74f3efff
1 changed files with 3 additions and 3 deletions
|
@ -22,9 +22,9 @@ def getData(id):
|
||||||
def getId(url):
|
def getId(url):
|
||||||
return url.split("/")[-2]
|
return url.split("/")[-2]
|
||||||
|
|
||||||
def getPostersByUrl(url, group=True):
|
def getPostersByUrl(url, group=True, timeout=-1):
|
||||||
posters = []
|
posters = []
|
||||||
html = readUrlUnicode(url)
|
html = readUrlUnicode(url, timeout=timeout)
|
||||||
if url in html:
|
if url in html:
|
||||||
if group:
|
if group:
|
||||||
results = re.compile('<a href="(http://www.movieposterdb.com/group/.+?)\??">', re.DOTALL).findall(html)
|
results = re.compile('<a href="(http://www.movieposterdb.com/group/.+?)\??">', re.DOTALL).findall(html)
|
||||||
|
@ -32,7 +32,7 @@ def getPostersByUrl(url, group=True):
|
||||||
posters += getPostersByUrl(result, False)
|
posters += getPostersByUrl(result, False)
|
||||||
results = re.compile('<a href="(http://www.movieposterdb.com/poster/.+?)">', re.DOTALL).findall(html)
|
results = re.compile('<a href="(http://www.movieposterdb.com/poster/.+?)">', re.DOTALL).findall(html)
|
||||||
for result in results:
|
for result in results:
|
||||||
html = readUrlUnicode(result)
|
html = readUrlUnicode(result, timeout=timeout)
|
||||||
posters.append(findRe(html, '"(http://www.movieposterdb.com/posters/.+?\.jpg)"'))
|
posters.append(findRe(html, '"(http://www.movieposterdb.com/posters/.+?\.jpg)"'))
|
||||||
return posters
|
return posters
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue