python-ox/ox/web/imdb.py

694 lines
25 KiB
Python
Raw Normal View History

2010-07-07 23:25:57 +00:00
# -*- coding: utf-8 -*-
# vi:si:et:sw=4:sts=4:ts=4
2014-09-30 19:04:46 +00:00
from __future__ import print_function
2010-07-07 23:25:57 +00:00
import re
import time
2011-04-15 09:46:20 +00:00
import unicodedata
2010-07-07 23:25:57 +00:00
2014-10-05 08:23:56 +00:00
from six.moves.urllib.parse import urlencode
2016-05-21 13:19:25 +00:00
from six import text_type, string_types
2014-09-30 19:04:46 +00:00
from .. import find_re, strip_tags, decode_html
from .. import cache
2010-07-07 23:25:57 +00:00
2014-09-30 19:04:46 +00:00
from . siteparser import SiteParser
from . import duckduckgo
2013-06-28 14:53:25 +00:00
from ..utils import datetime
from ..geo import normalize_country_name
2011-10-30 12:31:19 +00:00
2014-09-30 19:04:46 +00:00
def read_url(url, data=None, headers=cache.DEFAULT_HEADERS, timeout=cache.cache_timeout, valid=None, unicode=False):
2010-10-08 16:07:39 +00:00
headers = headers.copy()
2017-08-02 14:48:22 +00:00
# https://webapps.stackexchange.com/questions/11003/how-can-i-disable-reconfigure-imdbs-automatic-geo-location-so-it-does-not-defau
headers['X-Forwarded-For'] = '72.21.206.80'
2014-09-30 19:04:46 +00:00
return cache.read_url(url, data, headers, timeout, unicode=unicode)
2010-07-10 08:24:56 +00:00
2012-08-15 15:15:40 +00:00
def get_url(id):
2011-10-30 12:31:19 +00:00
return "http://www.imdb.com/title/tt%s/" % id
2018-01-14 17:24:29 +00:00
def reference_section(id):
return {
'page': 'reference',
're': [
'<h4 name="{id}" id="{id}".*?<table(.*?)</table>'.format(id=id),
'<a href="/name/.*?>(.*?)</a>'
],
'type': 'list'
}
def zebra_list(label, more=None):
conditions = {
'page': 'reference',
're': [
2018-01-16 08:48:12 +00:00
'_label">' + label + '</td>.*?<ul(.*?)</ul>',
2018-01-14 17:24:29 +00:00
'<li.*?>(.*?)</li>'
],
'type': 'list',
}
if more:
conditions['re'] += more
return conditions
def zebra_table(label, more=None, type='string'):
conditions = {
'page': 'reference',
're': [
'_label">' + label + '</td>.*?<td>(.*?)</td>',
],
'type': type,
}
if more:
conditions['re'] += more
return conditions
'''
'posterIds': {
'page': 'posters',
're': '/unknown-thumbnail/media/rm(.*?)/tt',
'type': 'list'
},
'''
2010-07-07 23:25:57 +00:00
class Imdb(SiteParser):
2010-12-09 03:37:28 +00:00
'''
2016-05-21 13:19:25 +00:00
>>> Imdb('0068646')['title'] == text_type(u'The Godfather')
True
2010-12-09 03:37:28 +00:00
2016-05-21 13:19:25 +00:00
>>> Imdb('0133093')['title'] == text_type(u'The Matrix')
True
2010-12-09 03:37:28 +00:00
'''
2017-05-03 13:11:01 +00:00
regex = {
2011-10-15 14:54:09 +00:00
'alternativeTitles': {
'page': 'releaseinfo',
're': [
2015-06-01 12:51:09 +00:00
'<table[^>]*?id="akas"[^>]*?>(.*?)</table>',
2010-10-08 15:43:25 +00:00
"td>(.*?)</td>.*?<td>(.*?)</td>"
],
'type': 'list'
},
2011-10-28 23:25:43 +00:00
'aspectratio': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
2018-01-26 07:49:33 +00:00
're': [
'Aspect Ratio</td>.*?ipl-inline-list__item">\s+([\d\.\:]+)',
2018-01-29 08:15:19 +00:00
lambda r: str(float(r.split(':')[0])/float(r.split(':')[1])) if ':' in r else r,
2018-01-26 07:49:33 +00:00
],
2011-08-18 07:30:30 +00:00
'type': 'float',
},
2018-01-14 17:24:29 +00:00
'budget': zebra_table('Budget', more=[
lambda data: find_re(decode_html(data).replace(',', ''), '\d+')
], type='int'),
2010-07-07 23:25:57 +00:00
'cast': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
2010-07-10 08:24:56 +00:00
're': [
2018-01-14 17:24:29 +00:00
' <table class="cast_list">(.*?)</table>',
'<td.*?itemprop="actor".*?>.*?>(.*?)</a>.*?<td class="character">(.*?)</td>',
2018-01-14 17:52:55 +00:00
lambda ll: [strip_tags(l) for l in ll] if isinstance(ll, list) else strip_tags(ll)
2010-07-07 23:25:57 +00:00
],
'type': 'list'
},
2018-01-14 17:24:29 +00:00
'cinematographer': reference_section('cinematographers'),
2010-07-07 23:25:57 +00:00
'connections': {
2015-10-12 11:56:25 +00:00
'page': 'movieconnections',
're': '<h4 class="li_group">(.*?)</h4>(.*?)(<\/div>\n <a|<script)',
2010-07-07 23:25:57 +00:00
'type': 'list'
},
2018-01-14 17:24:29 +00:00
'country': zebra_list('Country', more=['<a.*?>(.*?)</a>']),
2011-10-15 14:54:09 +00:00
'creator': {
'page': '',
2010-11-28 15:53:47 +00:00
're': [
'<div class="credit_summary_item">.*?<h4.*?>Creator.?:</h4>(.*?)</div>',
'<a href="/name/.*?>(.*?)</a>',
lambda ll: strip_tags(ll)
2010-11-28 15:53:47 +00:00
],
'type': 'list'
},
2018-01-14 17:24:29 +00:00
'director': reference_section('directors'),
'editor': reference_section('editors'),
'composer': reference_section('composers'),
2011-10-15 14:54:09 +00:00
'episodeTitle': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
're': '<h3 itemprop="name">(.*?)<',
2010-07-12 08:52:26 +00:00
'type': 'string'
},
2011-10-15 14:54:09 +00:00
'filmingLocations': {
2010-07-07 23:25:57 +00:00
'page': 'locations',
2013-05-14 22:23:00 +00:00
're': [
'<a href="/search/title\?locations=.*?".*?>(.*?)</a>',
lambda data: data.strip(),
],
2010-07-07 23:25:57 +00:00
'type': 'list'
},
2018-01-14 17:45:52 +00:00
'genre': zebra_list('Genres', more=['<a.*?>(.*?)</a>']),
2018-01-14 17:24:29 +00:00
'gross': zebra_table('Cumulative Worldwide Gross', more=[
lambda data: find_re(decode_html(data).replace(',', ''), '\d+')
], type='int'),
2011-10-31 16:46:05 +00:00
'keyword': {
2010-07-07 23:25:57 +00:00
'page': 'keywords',
2013-05-30 19:12:28 +00:00
're': '<a href="/keyword/.*?>(.*?)</a>',
2010-07-07 23:25:57 +00:00
'type': 'list'
},
2018-01-14 17:24:29 +00:00
'language': zebra_list('Language', more=['<a.*?>(.*?)</a>']),
2017-08-02 14:48:22 +00:00
'originalTitle': {
'page': 'releaseinfo',
're': '<td>\(original title\)</td>\s*<td>(.*?)</td>',
2017-08-02 14:48:22 +00:00
'type': 'string'
},
2018-01-14 17:24:29 +00:00
'summary': zebra_table('Plot Summary', more=[
'<p>(.*?)<em'
]),
2011-10-15 14:54:09 +00:00
'posterId': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
're': '<img.*?class="titlereference-primary-image".*?src="(.*?)".*?>',
2010-07-19 10:05:01 +00:00
'type': 'string'
2010-07-07 23:25:57 +00:00
},
2018-01-14 17:24:29 +00:00
'producer': reference_section('producers'),
2013-02-25 08:27:48 +00:00
'productionCompany': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
2013-02-18 13:50:30 +00:00
're': [
2018-01-14 17:24:29 +00:00
'Production Companies.*?<ul(.*?)</ul>',
2013-02-18 13:50:30 +00:00
'<a href="/company/.*?/">(.*?)</a>'
],
'type': 'list'
},
2010-07-07 23:25:57 +00:00
'rating': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
're': [
'<div class="ipl-rating-star ">(.*?)</div>',
'ipl-rating-star__rating">([\d,.]+?)</span>',
],
2010-07-07 23:25:57 +00:00
'type': 'float'
},
2011-10-28 17:24:09 +00:00
'releasedate': {
2010-07-07 23:25:57 +00:00
'page': 'releaseinfo',
2013-06-28 14:53:25 +00:00
're': [
'<td class="release_date">(.*?)</td>',
2014-09-30 19:04:46 +00:00
strip_tags,
2013-06-28 14:53:25 +00:00
],
'type': 'list'
2010-07-07 23:25:57 +00:00
},
2018-01-14 17:24:29 +00:00
#FIXME using some /offsite/ redirect now
#'reviews': {
# 'page': 'externalreviews',
# 're': [
# '<ul class="simpleList">(.*?)</ul>',
# '<li>.*?<a href="(http.*?)".*?>(.*?)</a>.*?</li>'
# ],
# 'type': 'list'
#},
'runtime': zebra_list('Runtime'),
'color': zebra_list('Color', more=['<a.*?>(.*?)</a>']),
2018-01-14 17:48:39 +00:00
'sound': zebra_list('Sound Mix', more=['<a.*?>(.*?)</a>']),
2018-01-14 17:24:29 +00:00
2010-07-12 08:52:26 +00:00
'season': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
're': [
2018-01-14 17:24:29 +00:00
'<ul class="ipl-inline-list titlereference-overview-season-episode-numbers">(.*?)</ul>',
'Season (\d+)',
],
2010-07-12 08:52:26 +00:00
'type': 'int'
},
'episode': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
're': [
2018-01-14 17:24:29 +00:00
'<ul class="ipl-inline-list titlereference-overview-season-episode-numbers">(.*?)</ul>',
'Episode (\d+)',
],
2010-07-12 08:52:26 +00:00
'type': 'int'
},
'series': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
're': '<h4 itemprop="name">.*?<a href="/title/tt(\d{7})',
2010-07-12 08:52:26 +00:00
'type': 'string'
},
2011-11-22 11:46:27 +00:00
'isSeries': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
're': 'property=\'og:title\'.*?content=".*?(TV series|TV mini-series).*?"',
2011-11-22 11:46:27 +00:00
'type': 'string'
},
'title': {
'page': 'releaseinfo',
're': 'h3 itemprop="name">.*?>(.*?)</a>',
2010-07-07 23:25:57 +00:00
'type': 'string'
},
'trivia': {
'page': 'trivia',
2013-10-21 15:33:00 +00:00
're': [
'<div class="sodatext">(.*?)<(br|/div)',
lambda data: data[0]
],
2010-07-07 23:25:57 +00:00
'type': 'list',
},
'votes': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
2010-07-07 23:25:57 +00:00
're': [
2018-01-14 17:24:29 +00:00
'class="ipl-rating-star__total-votes">\((.*?)\)',
lambda r: r.replace(',', '')
2010-07-07 23:25:57 +00:00
],
2018-01-14 17:24:29 +00:00
'type': 'string'
2010-07-07 23:25:57 +00:00
},
2018-01-14 17:24:29 +00:00
'writer': reference_section('writers'),
2010-07-07 23:25:57 +00:00
'year': {
2018-01-14 17:24:29 +00:00
'page': 'reference',
2018-02-16 11:20:20 +00:00
're': '<a href="/search/title\?year=\d+&ref_=tt_rv".*?itemprop=\'url\'>(\d+)</a>',
2010-07-07 23:25:57 +00:00
'type': 'int'
2017-02-16 16:16:14 +00:00
},
'credits': {
'page': 'fullcredits',
're': [
lambda data: data.split('<h4'),
'>(.*?)</h4>.*?(<table.*?</table>)',
lambda data: [d for d in data if d]
],
'type': 'list'
},
2010-07-07 23:25:57 +00:00
}
def read_url(self, url, timeout):
2017-08-02 14:48:22 +00:00
if url not in self._cache:
2012-08-21 07:06:29 +00:00
self._cache[url] = read_url(url, timeout=timeout, unicode=True)
return self._cache[url]
2010-10-08 16:07:39 +00:00
2010-07-12 08:52:26 +00:00
def __init__(self, id, timeout=-1):
2016-05-21 13:19:25 +00:00
# use akas.imdb.com to always get original title:
# http://www.imdb.com/help/show_leaf?titlelanguagedisplay
2017-08-02 14:48:22 +00:00
self.baseUrl = "http://www.imdb.com/title/tt%s/" % id
2010-07-12 08:52:26 +00:00
super(Imdb, self).__init__(timeout)
2016-05-21 13:19:25 +00:00
2018-01-14 17:24:29 +00:00
url = self.baseUrl + 'reference'
page = self.read_url(url, timeout=-1)
2012-05-22 09:22:08 +00:00
if '<title>IMDb: Page not found</title>' in page \
or 'The requested URL was not found on our server.' in page:
2011-04-15 09:46:20 +00:00
return
2012-05-22 09:22:08 +00:00
if "<p>We're sorry, something went wrong.</p>" in page:
2011-04-20 21:08:33 +00:00
time.sleep(1)
2011-04-20 21:12:31 +00:00
super(Imdb, self).__init__(0)
2010-07-07 23:25:57 +00:00
if 'alternativeTitles' in self:
if len(self['alternativeTitles']) == 2 and \
2014-09-30 19:04:46 +00:00
isinstance(self['alternativeTitles'][0], string_types):
self['alternativeTitles'] = [self['alternativeTitles']]
2018-01-16 08:48:12 +00:00
for key in ('country', 'genre', 'language', 'sound', 'color'):
2018-01-14 17:33:59 +00:00
if key in self:
self[key] = [x[0] if len(x) == 1 and isinstance(x, list) else x for x in self[key]]
self[key] = list(filter(lambda x: x.lower() != 'home', self[key]))
#normalize country names
if 'country' in self:
self['country'] = [normalize_country_name(c) or c for c in self['country']]
2013-07-23 12:54:32 +00:00
2012-09-14 09:27:36 +00:00
def cleanup_title(title):
if title.startswith('"') and title.endswith('"'):
title = title[1:-1]
if title.startswith("'") and title.endswith("'"):
title = title[1:-1]
2012-09-14 09:27:36 +00:00
title = re.sub('\(\#[.\d]+\)', '', title)
2012-09-14 09:31:29 +00:00
return title.strip()
2012-09-14 09:27:36 +00:00
2017-08-02 14:48:22 +00:00
for t in ('title', 'originalTitle'):
2012-09-14 09:17:34 +00:00
if t in self:
2012-09-14 09:27:36 +00:00
self[t] = cleanup_title(self[t])
2011-10-15 14:54:09 +00:00
if 'alternativeTitles' in self:
alt = {}
for t in self['alternativeTitles']:
2013-06-29 16:50:10 +00:00
title = cleanup_title(t[1])
2017-08-02 14:48:22 +00:00
if title.lower() not in (self.get('title', '').lower(), self.get('originalTitle', '').lower()):
if title not in alt:
alt[title] = []
2013-06-29 16:50:10 +00:00
for c in t[0].split('/'):
2017-08-02 14:48:22 +00:00
for cleanup in ('International', '(working title)', 'World-wide'):
c = c.replace(cleanup, '')
c = c.split('(')[0].strip()
if c:
alt[title].append(c)
self['alternativeTitles'] = []
2014-09-30 19:04:46 +00:00
for t in sorted(alt, key=lambda a: sorted(alt[a])):
2017-08-02 14:48:22 +00:00
countries = sorted(set([normalize_country_name(c) or c for c in alt[t]]))
2015-05-04 08:53:17 +00:00
self['alternativeTitles'].append((t, countries))
2012-09-22 21:28:59 +00:00
if not self['alternativeTitles']:
del self['alternativeTitles']
2011-08-07 10:42:59 +00:00
2010-07-08 08:03:57 +00:00
if 'runtime' in self and self['runtime']:
2018-01-14 17:24:29 +00:00
if isinstance(self['runtime'], list):
self['runtime'] = self['runtime'][0]
2017-08-02 14:48:22 +00:00
if 'min' in self['runtime']:
base = 60
else:
base = 1
self['runtime'] = int(find_re(self['runtime'], '([0-9]+)')) * base
2010-07-10 08:24:56 +00:00
if 'runtime' in self and not self['runtime']:
del self['runtime']
2018-01-14 17:24:29 +00:00
if 'sound' in self:
self['sound'] = list(sorted(set(self['sound'])))
2011-10-15 14:54:09 +00:00
if 'cast' in self:
2014-09-30 19:04:46 +00:00
if isinstance(self['cast'][0], string_types):
2011-10-15 14:54:09 +00:00
self['cast'] = [self['cast']]
self['actor'] = [c[0] for c in self['cast']]
2012-09-25 10:57:57 +00:00
def cleanup_character(c):
c = c.replace('(uncredited)', '').strip()
2018-01-14 17:24:29 +00:00
c = re.sub('\s+', ' ', c)
2012-09-25 10:57:57 +00:00
return c
self['cast'] = [{'actor': x[0], 'character': cleanup_character(x[1])}
for x in self['cast']]
2011-10-15 14:54:09 +00:00
2010-07-07 23:25:57 +00:00
if 'connections' in self:
cc={}
2014-09-30 19:04:46 +00:00
if len(self['connections']) == 3 and isinstance(self['connections'][0], string_types):
2010-07-08 08:03:57 +00:00
self['connections'] = [self['connections']]
for rel, data, _ in self['connections']:
2014-09-30 19:04:46 +00:00
if isinstance(rel, bytes):
rel = rel.decode('utf-8')
#cc[rel] = re.compile('<a href="/title/tt(\d{7})/">(.*?)</a>').findall(data)
2011-09-30 17:52:13 +00:00
def get_conn(c):
r = {
2011-09-30 17:52:13 +00:00
'id': c[0],
'title': cleanup_title(c[1]),
2011-09-30 17:52:13 +00:00
}
description = c[2].split('<br />')
2012-09-30 10:17:45 +00:00
if len(description) == 2 and description[-1].strip() != '-':
r['description'] = description[-1].strip()
return r
2015-10-12 11:56:25 +00:00
cc[rel] = list(map(get_conn, re.compile('<a href="/title/tt(\d{7})/?">(.*?)</a>(.*?)<\/div', re.DOTALL).findall(data)))
2011-09-30 17:52:13 +00:00
2010-07-07 23:25:57 +00:00
self['connections'] = cc
2011-11-22 11:46:27 +00:00
if 'isSeries' in self:
del self['isSeries']
2013-03-01 09:45:18 +00:00
self['isSeries'] = True
2012-09-23 13:12:07 +00:00
if 'episodeTitle' in self:
self['episodeTitle'] = re.sub('Episode \#\d+\.\d+', '', self['episodeTitle'])
2010-07-12 08:52:26 +00:00
if 'series' in self:
series = Imdb(self['series'], timeout=timeout)
self['seriesTitle'] = series['title']
2011-10-15 14:54:09 +00:00
if 'episodeTitle' in self:
self['seriesTitle'] = series['title']
2012-09-25 11:54:54 +00:00
if 'season' in self and 'episode' in self:
self['title'] = "%s (S%02dE%02d) %s" % (
2011-10-15 14:54:09 +00:00
self['seriesTitle'], self['season'], self['episode'], self['episodeTitle'])
2012-09-25 11:54:54 +00:00
else:
self['title'] = "%s (S01) %s" % (self['seriesTitle'], self['episodeTitle'])
self['season'] = 1
2012-09-23 13:12:07 +00:00
self['title'] = self['title'].strip()
2011-10-24 19:29:49 +00:00
if 'director' in self:
self['episodeDirector'] = self['director']
2011-10-15 19:32:32 +00:00
if 'creator' not in series and 'director' in series:
2011-10-18 12:33:45 +00:00
series['creator'] = series['director']
2011-10-18 13:50:16 +00:00
if len(series['creator']) > 10:
series['creator'] = series['director'][:1]
2011-10-18 12:33:45 +00:00
2011-10-24 19:29:49 +00:00
for key in ['creator', 'country']:
2010-12-07 18:29:53 +00:00
if key in series:
2011-10-15 14:54:09 +00:00
self[key] = series[key]
2011-10-24 19:29:49 +00:00
if 'year' in series:
self['seriesYear'] = series['year']
if not 'year' in self:
self['year'] = series['year']
if 'year' in self:
self['episodeYear'] = self['year']
if 'creator' in self:
self['seriesDirector'] = self['creator']
if 'originalTitle' in self:
del self['originalTitle']
2010-07-12 08:52:26 +00:00
else:
2011-10-15 14:54:09 +00:00
for key in ('seriesTitle', 'episodeTitle', 'season', 'episode'):
2010-07-12 08:52:26 +00:00
if key in self:
del self[key]
2011-10-15 19:32:32 +00:00
if 'creator' in self:
if 'director' in self:
self['episodeDirector'] = self['director']
self['director'] = self['creator']
#make lists unique but keep order
2013-02-20 04:16:34 +00:00
for key in ('director', 'language'):
if key in self:
self[key] = [x for i,x in enumerate(self[key])
if x not in self[key][i+1:]]
2013-03-14 08:47:10 +00:00
for key in ('actor', 'writer', 'producer', 'editor', 'composer'):
if key in self:
2012-08-30 09:46:25 +00:00
if isinstance(self[key][0], list):
self[key] = [i[0] for i in self[key] if i]
2014-09-30 19:04:46 +00:00
self[key] = sorted(list(set(self[key])), key=lambda a: self[key].index(a))
2011-08-09 08:30:13 +00:00
if 'budget' in self and 'gross' in self:
self['profit'] = self['gross'] - self['budget']
2011-10-28 17:24:09 +00:00
if 'releasedate' in self:
2013-06-28 14:53:25 +00:00
def parse_date(d):
try:
d = datetime.strptime(d, '%d %B %Y')
except:
try:
d = datetime.strptime(d, '%B %Y')
except:
return 'x'
return '%d-%02d-%02d' % (d.year, d.month, d.day)
self['releasedate'] = min([
parse_date(d) for d in self['releasedate']
])
2013-06-29 16:21:58 +00:00
if self['releasedate'] == 'x':
del self['releasedate']
2011-10-18 12:57:31 +00:00
if 'summary' in self:
2014-01-16 08:26:07 +00:00
if isinstance(self['summary'], list):
self['summary'] = self['summary'][0]
2011-10-18 12:57:31 +00:00
self['summary'] = self['summary'].split('</p')[0].strip()
2011-10-15 14:54:09 +00:00
2017-02-16 16:16:14 +00:00
if 'credits' in self:
credits = [
[
strip_tags(d[0].replace(' by', '')).strip(),
[
[
strip_tags(x[0]).strip(),
[t.strip().split(' (')[0].strip() for t in x[2].split(' / ')]
]
for x in
re.compile('<td class="name">(.*?)</td>.*?<td>(.*?)</td>.*?<td class="credit">(.*?)</td>', re.DOTALL).findall(d[1])
]
] for d in self['credits'] if d
]
credits = [c for c in credits if c[1]]
self['credits'] = []
for department, crew in credits:
department = department.replace('(in alphabetical order)', '').strip()
for c in crew:
self['credits'].append({
'name': c[0],
'roles': c[1],
'deparment': department
})
2017-03-05 08:13:01 +00:00
if not self['credits']:
del self['credits']
2017-02-16 16:16:14 +00:00
class ImdbCombined(Imdb):
def __init__(self, id, timeout=-1):
_regex = {}
for key in self.regex:
2018-01-14 17:24:29 +00:00
if self.regex[key]['page'] in ('releaseinfo', 'reference'):
_regex[key] = self.regex[key]
self.regex = _regex
super(ImdbCombined, self).__init__(id, timeout)
2012-08-15 15:15:40 +00:00
def get_movie_by_title(title, timeout=-1):
2011-04-15 09:46:20 +00:00
'''
This only works for exact title matches from the data dump
Usually in the format
Title (Year)
"Series Title" (Year) {(#Season.Episode)}
"Series Title" (Year) {Episode Title (#Season.Episode)}
If there is more than one film with that title for the year
Title (Year/I)
2016-05-21 13:19:25 +00:00
>>> str(get_movie_by_title(u'"Father Knows Best" (1954) {(#5.34)}'))
'1602860'
>>> str(get_movie_by_title(u'The Matrix (1999)'))
'0133093'
2011-04-15 09:46:20 +00:00
2016-05-21 13:19:25 +00:00
>>> str(get_movie_by_title(u'Little Egypt (1951)'))
'0043748'
2011-04-15 09:46:20 +00:00
2016-05-21 13:19:25 +00:00
>>> str(get_movie_by_title(u'Little Egypt (1897/I)'))
'0214882'
2011-04-15 09:46:20 +00:00
2012-08-15 15:15:40 +00:00
>>> get_movie_by_title(u'Little Egypt')
2011-04-15 09:46:20 +00:00
None
2016-05-21 13:19:25 +00:00
>>> str(get_movie_by_title(u'"Dexter" (2006) {Father Knows Best (#1.9)}'))
'0866567'
2011-04-15 09:46:20 +00:00
'''
2016-05-21 13:19:25 +00:00
params = {'s': 'tt', 'q': title}
2014-09-30 19:04:46 +00:00
if not isinstance(title, bytes):
2011-04-15 09:46:20 +00:00
try:
params['q'] = unicodedata.normalize('NFKC', params['q']).encode('latin-1')
except:
params['q'] = params['q'].encode('utf-8')
2014-10-05 08:23:56 +00:00
params = urlencode(params)
2011-04-15 09:46:20 +00:00
url = "http://akas.imdb.com/find?" + params
data = read_url(url, timeout=timeout, unicode=True)
2011-04-15 09:46:20 +00:00
#if search results in redirect, get id of current page
r = '<meta property="og:url" content="http://www.imdb.com/title/tt(\d{7})/" />'
results = re.compile(r).findall(data)
if results:
return results[0]
return None
2012-08-15 15:15:40 +00:00
def get_movie_id(title, director='', year='', timeout=-1):
2010-07-18 18:57:22 +00:00
'''
2016-05-21 13:19:25 +00:00
>>> str(get_movie_id('The Matrix'))
'0133093'
2010-09-03 21:19:19 +00:00
2016-05-21 13:19:25 +00:00
>>> str(get_movie_id('2 or 3 Things I Know About Her', 'Jean-Luc Godard'))
'0060304'
2010-09-03 21:19:19 +00:00
2016-05-21 13:19:25 +00:00
>>> str(get_movie_id('2 or 3 Things I Know About Her', 'Jean-Luc Godard', '1967'))
'0060304'
2010-12-31 07:23:28 +00:00
2016-05-21 13:19:25 +00:00
>>> str(get_movie_id(u"Histoire(s) du cinema: Le controle de l'univers", u'Jean-Luc Godard'))
'0179214'
>>> str(get_movie_id(u"Histoire(s) du cinéma: Le contrôle de l'univers", u'Jean-Luc Godard'))
'0179214'
2010-12-31 07:23:28 +00:00
2010-07-18 18:57:22 +00:00
'''
2011-03-09 12:10:20 +00:00
imdbId = {
(u'Le jour se l\xe8ve', u'Marcel Carn\xe9'): '0031514',
(u'Wings', u'Larisa Shepitko'): '0061196',
(u'The Ascent', u'Larisa Shepitko'): '0075404',
(u'Fanny and Alexander', u'Ingmar Bergman'): '0083922',
(u'Torment', u'Alf Sj\xf6berg'): '0036914',
(u'Crisis', u'Ingmar Bergman'): '0038675',
(u'To Joy', u'Ingmar Bergman'): '0043048',
(u'Humain, trop humain', u'Louis Malle'): '0071635',
(u'Place de la R\xe9publique', u'Louis Malle'): '0071999',
(u'God\u2019s Country', u'Louis Malle'): '0091125',
2011-03-15 19:16:35 +00:00
(u'Flunky, Work Hard', u'Mikio Naruse'): '0022036',
(u'The Courtesans of Bombay', u'Richard Robbins') : '0163591',
(u'Je tu il elle', u'Chantal Akerman') : '0071690',
(u'Hotel Monterey', u'Chantal Akerman') : '0068725',
(u'No Blood Relation', u'Mikio Naruse') : '023261',
(u'Apart from You', u'Mikio Naruse') : '0024214',
(u'Every-Night Dreams', u'Mikio Naruse') : '0024793',
(u'Street Without End', u'Mikio Naruse') : '0025338',
(u'Sisters of the Gion', u'Kenji Mizoguchi') : '0027672',
(u'Osaka Elegy', u'Kenji Mizoguchi') : '0028021',
(u'Blaise Pascal', u'Roberto Rossellini') : '0066839',
(u'Japanese Girls at the Harbor', u'Hiroshi Shimizu') : '0160535',
(u'The Private Life of Don Juan', u'Alexander Korda') : '0025681',
(u'Last Holiday', u'Henry Cass') : '0042665',
(u'A Colt Is My Passport', u'Takashi Nomura') : '0330536',
(u'Androcles and the Lion', u'Chester Erskine') : '0044355',
(u'Major Barbara', u'Gabriel Pascal') : '0033868',
(u'Come On Children', u'Allan King') : '0269104',
2011-03-09 12:10:20 +00:00
2011-03-15 19:16:35 +00:00
(u'Jimi Plays Monterey & Shake! Otis at Monterey', u'D. A. Pennebaker and Chris Hegedus') : '',
(u'Martha Graham: Dance on Film', u'Nathan Kroll') : '',
2012-07-07 13:04:16 +00:00
(u'Carmen', u'Carlos Saura'): '0085297',
(u'The Story of a Cheat', u'Sacha Guitry'): '0028201',
(u'Weekend', 'Andrew Haigh'): '1714210',
2011-03-09 12:10:20 +00:00
}.get((title, director), None)
if imdbId:
return imdbId
params = {'s': 'tt', 'q': title}
2010-07-18 18:57:22 +00:00
if director:
2011-02-08 07:20:57 +00:00
params['q'] = u'"%s" %s' % (title, director)
2010-09-03 21:19:19 +00:00
if year:
2011-02-08 07:20:57 +00:00
params['q'] = u'"%s (%s)" %s' % (title, year, director)
2011-03-09 12:10:20 +00:00
google_query = "site:imdb.com %s" % params['q']
2014-09-30 19:04:46 +00:00
if not isinstance(params['q'], bytes):
2011-04-15 09:46:20 +00:00
try:
params['q'] = unicodedata.normalize('NFKC', params['q']).encode('latin-1')
except:
params['q'] = params['q'].encode('utf-8')
2014-10-05 08:23:56 +00:00
params = urlencode(params)
2010-12-31 07:23:28 +00:00
url = "http://akas.imdb.com/find?" + params
#print url
data = read_url(url, timeout=timeout, unicode=True)
2010-12-31 07:23:28 +00:00
#if search results in redirect, get id of current page
r = '<meta property="og:url" content="http://www.imdb.com/title/tt(\d{7})/" />'
results = re.compile(r).findall(data)
if results:
return results[0]
#otherwise get first result
r = '<td valign="top">.*?<a href="/title/tt(\d{7})/"'
2011-03-09 12:10:20 +00:00
results = re.compile(r).findall(data)
2010-12-31 07:23:28 +00:00
if results:
return results[0]
2011-03-09 12:10:20 +00:00
#print((title, director), ": '',")
#print(google_query)
2013-06-14 10:17:18 +00:00
#results = google.find(google_query, timeout=timeout)
results = duckduckgo.find(google_query, timeout=timeout)
2011-03-09 12:10:20 +00:00
if results:
2013-06-14 10:17:18 +00:00
for r in results[:2]:
imdbId = find_re(r[1], 'title/tt(\d{7})')
if imdbId:
return imdbId
2010-12-31 07:23:28 +00:00
#or nothing
2010-07-18 18:57:22 +00:00
return ''
2012-08-15 15:15:40 +00:00
def get_movie_poster(imdbId):
2010-09-17 08:46:37 +00:00
'''
2012-08-15 15:15:40 +00:00
>>> get_movie_poster('0133093')
2010-09-17 08:46:37 +00:00
'http://ia.media-imdb.com/images/M/MV5BMjEzNjg1NTg2NV5BMl5BanBnXkFtZTYwNjY3MzQ5._V1._SX338_SY475_.jpg'
'''
2010-07-19 10:05:01 +00:00
info = ImdbCombined(imdbId)
2011-10-18 13:30:16 +00:00
if 'posterId' in info:
2017-05-03 13:02:58 +00:00
poster = info['posterId']
2017-05-03 13:11:01 +00:00
if '@._V' in poster:
poster = poster.split('@._V')[0] + '@.jpg'
2010-07-19 10:05:01 +00:00
return poster
2010-09-17 08:46:37 +00:00
elif 'series' in info:
2012-08-15 15:15:40 +00:00
return get_movie_poster(info['series'])
2010-07-19 10:05:01 +00:00
return ''
def get_episodes(imdbId, season=None):
episodes = {}
url = 'http://www.imdb.com/title/tt%s/episodes' % imdbId
if season:
url += '?season=%d' % season
2014-09-30 19:04:46 +00:00
data = cache.read_url(url)
for e in re.compile('<div data-const="tt(\d{7})".*?>.*?<div>S(\d+), Ep(\d+)<\/div>\n<\/div>', re.DOTALL).findall(data):
2017-08-02 14:48:22 +00:00
episodes['S%02dE%02d' % (int(e[1]), int(e[2]))] = e[0]
else:
2014-09-30 19:04:46 +00:00
data = cache.read_url(url)
match = re.compile('<strong>Season (\d+)</strong>').findall(data)
if match:
for season in range(1, int(match[0]) + 1):
episodes.update(get_episodes(imdbId, season))
return episodes
2012-08-15 15:15:40 +00:00
def max_votes():
url = 'http://www.imdb.com/search/title?num_votes=500000,&sort=num_votes,desc'
2016-09-07 13:06:52 +00:00
data = cache.read_url(url).decode('utf-8', 'ignore')
2016-09-07 12:44:42 +00:00
votes = max([
int(v.replace(',', ''))
for v in re.compile('<span name="nv" data-value="(\d+)"').findall(data)
])
2012-03-08 12:57:11 +00:00
return votes
2010-12-31 07:23:28 +00:00
def guess(title, director='', timeout=-1):
2012-08-15 15:15:40 +00:00
return get_movie_id(title, director, timeout=timeout)
2010-07-07 23:25:57 +00:00
if __name__ == "__main__":
import json
2014-09-30 19:04:46 +00:00
print(json.dumps(Imdb('0306414'), indent=2))
2010-07-07 23:25:57 +00:00
#print json.dumps(Imdb('0133093'), indent=2)