8 digit imdb ids

This commit is contained in:
j 2019-08-02 16:26:22 +02:00
parent e78519998d
commit d845030557

View file

@ -8,7 +8,7 @@ from ox.net import read_url
def get_poster_url(id):
url = 'http://piratecinema.org/posters/'
html = read_url(url).decode('utf-8')
results = re.compile('src="(.+)" title=".+\((\d{7})\)"').findall(html)
results = re.compile('src="(.+)" title=".+\((\d{6}\d+)\)"').findall(html)
for result in results:
if result[1] == id:
return url + result[0]