Switch to python3
This commit is contained in:
parent
531041e89a
commit
9ba4b6a91a
5286 changed files with 677347 additions and 576888 deletions
19
Shared/lib/python3.4/site-packages/ox/web/piratecinema.py
Normal file
19
Shared/lib/python3.4/site-packages/ox/web/piratecinema.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# vi:si:et:sw=4:sts=4:ts=4
|
||||
from __future__ import print_function
|
||||
|
||||
import re
|
||||
from ox.net import read_url
|
||||
|
||||
def get_poster_url(id):
|
||||
url = 'http://piratecinema.org/posters/'
|
||||
html = read_url(url, unicode=True)
|
||||
results = re.compile('src="(.+)" title=".+\((\d{7})\)"').findall(html)
|
||||
for result in results:
|
||||
if result[1] == id:
|
||||
return url + result[0]
|
||||
return ''
|
||||
|
||||
if __name__ == '__main__':
|
||||
print(get_poster_url('0749451'))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue