1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
"""
parser.http package (imdb package).
This package provides the IMDbHTTPAccessSystem class used to access
IMDb's data through the web interface.
the imdb.IMDb function will return an instance of this class when
called with the 'accessSystem' argument set to "http" or "web"
or "html" (this is the default).
Copyright 2004-2006 Davide Alberani <da@erlug.linux.it>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
from urllib import FancyURLopener, quote_plus
from codecs import lookup
from imdb import IMDbBase
from imdb.Movie import Movie
from imdb.utils import analyze_title
from imdb._exceptions import IMDbDataAccessError, IMDbParserError
from movieParser import movie_parser, plot_parser, movie_awards_parser, \
taglines_parser, keywords_parser, \
alternateversions_parser, crazycredits_parser, \
goofs_parser, trivia_parser, quotes_parser, \
releasedates_parser, ratings_parser, \
officialsites_parser, connections_parser, \
tech_parser, locations_parser, soundtrack_parser, \
dvd_parser, rec_parser, externalrev_parser, \
newsgrouprev_parser, misclinks_parser, \
soundclips_parser, videoclips_parser, news_parser, \
photosites_parser, amazonrev_parser, guests_parser, \
business_parser, sales_parser, episodes_parser, \
eprating_parser
from searchMovieParser import search_movie_parser
from personParser import maindetails_parser, bio_parser, \
otherworks_parser, person_awards_parser, \
person_officialsites_parser, publicity_parser, \
agent_parser, person_series_parser
from searchPersonParser import search_person_parser
from utils import ParserBase
# Misc URLs
imdbURL_movie = 'http://akas.imdb.com/title/tt%s/'
imdbURL_person = 'http://akas.imdb.com/name/nm%s/'
imdbURL_search = 'http://akas.imdb.com/find?%s'
# The cookies for the "adult" search.
# Please don't mess with this account.
_cookie_id = 'boM2bYxz9MCsOnH9gZ0S9QHs12NWrNdApxsls1Vb5/NGrNdjcHx3dUas10UASoAjVEvhAbGagERgOpNkAPvxdbfKwaV2ikEj9SzXY1WPxABmDKQwdqzwRbM+12NSeJFGUEx3F8as10WwidLzVshDtxaPIbP13NdjVS9UZTYqgTVGrNcT9vyXU1'
_cookie_uu = '3M3AXsquTU5Gur/Svik+ewflPm5Rk2ieY3BIPlLjyK3C0Dp9F8UoPgbTyKiGtZp4x1X+uAUGKD7BM2g+dVd8eqEzDErCoYvdcvGLvVLAen1y08hNQtALjVKAe+1hM8g9QbNonlG1/t4S82ieUsBbrSIQbq1yhV6tZ6ArvSbA7rgHc8n5AdReyAmDaJ5Wm/ee3VDoCnGj/LlBs2ieUZNorhHDKK5Q=='
class IMDbURLopener(FancyURLopener):
"""Fetch web pages and handle errors."""
def __init__(self, *args, **kwargs):
FancyURLopener.__init__(self, *args, **kwargs)
# XXX: IMDb's web server doesn't like urllib-based programs,
# so lets fake to be Mozilla.
# Wow! I'm shocked by my total lack of ethic! <g>
self.addheaders = [('User-agent', 'Mozilla/5.0')]
# This class is used also to perform "Exact Primary [Title|Name]"
# searches, and so by default the cookie is set.
c_header = 'id=%s; uu=%s' % (_cookie_id, _cookie_uu)
self.addheaders.append(('Cookie', c_header))
def retrieve_unicode(self, url, size=-1):
"""Retrieves the given URL, and returns a unicode string,
trying to guess the encoding of the data (assuming latin_1
by default)"""
encode = None
try:
if size != -1:
self.addheader('Range', 'bytes=0-%d' % size)
uopener = self.open(url)
content = uopener.read(size=size)
server_encode = uopener.info().getparam('charset')
# look at the content-type HTML meta tag.
if server_encode is None and content:
first_bytes = content[:512]
begin_h = first_bytes.find('text/html; charset=')
if begin_h != -1:
end_h = first_bytes[19+begin_h:].find('"')
if end_h != -1:
server_encode = first_bytes[19+begin_h:19+begin_h+end_h]
if server_encode:
try:
if lookup(server_encode):
encode = server_encode
except (LookupError, ValueError, TypeError):
pass
uopener.close()
if size != -1:
for index in xrange(len(self.addheaders)):
if self.addheaders[index][0] == 'Range':
del self.addheaders[index]
self.close()
except IOError, e:
if size != -1:
for index in xrange(len(self.addheaders)):
if self.addheaders[index][0] == 'Range':
del self.addheaders[index]
raise IMDbDataAccessError, {'errcode': e.errno,
'errmsg': str(e.strerror),
'url': url,
'proxy': self.proxies.get('http', '')}
if encode is None:
encode = 'latin_1'
# The detection of the encoding is error prone...
import warnings
warnings.warn('Unable to detect the encoding of the retrieved '
'page [%s]; falling back to default latin1.' % encode)
return unicode(content, encode, 'replace')
def http_error_default(self, url, fp, errcode, errmsg, headers):
raise IMDbDataAccessError, {'url': 'http:%s' % url,
'errcode': errcode,
'errmsg': errmsg,
'headers': headers,
'proxy': self.proxies.get('http', '')}
def open_unknown(self, fullurl, data=None):
raise IMDbDataAccessError, {'fullurl': fullurl,
'data': str(data),
'proxy': self.proxies.get('http', '')}
def open_unknown_proxy(self, proxy, fullurl, data=None):
raise IMDbDataAccessError, {'proxy': str(proxy),
'fullurl': fullurl,
'data': str(data)}
class IMDbHTTPAccessSystem(IMDbBase):
"""The class used to access IMDb's data through the web."""
accessSystem = 'http'
urlOpener = IMDbURLopener()
def __init__(self, isThin=0, adultSearch=1, proxy=-1,
*arguments, **keywords):
"""Initialize the access system."""
IMDbBase.__init__(self, *arguments, **keywords)
# When isThin is set, we're parsing the "maindetails" page
# of a movie (instead of the "combined" page) and movie/person
# references are not collected if no defaultModFunct is provided.
self.isThin = isThin
if isThin:
self.accessSystem = 'httpThin'
movie_parser.mdparse = 1
if self._defModFunct is None:
ParserBase.getRefs = 0
from imdb.utils import modNull
self._defModFunct = modNull
else:
movie_parser.mdparse = 0
ParserBase.getRefs = 1
self.do_adult_search(adultSearch)
if proxy != -1: self.set_proxy(proxy)
def _normalize_movieID(self, movieID):
"""Normalize the given movieID."""
try:
return '%07d' % int(movieID)
except ValueError, e:
raise IMDbParserError, 'invalid movieID "%s": %s' % (movieID, e)
def _normalize_personID(self, personID):
"""Normalize the given personID."""
try:
return '%07d' % int(personID)
except ValueError, e:
raise IMDbParserError, 'invalid personID "%s": %s' % (personID, e)
def get_imdbMovieID(self, movieID):
"""Translate a movieID in an imdbID; in this implementation
the movieID _is_ the imdbID.
"""
return movieID
def get_imdbPersonID(self, personID):
"""Translate a personID in an imdbID; in this implementation
the personID _is_ the imdbID.
"""
return personID
def set_proxy(self, proxy):
"""Set the web proxy to use.
It should be a string like 'http://localhost:8080/'; if the
string is empty, no proxy will be used.
If set, the value of the environment variable HTTP_PROXY is
automatically used.
"""
if not proxy:
if self.urlOpener.proxies.has_key('http'):
del self.urlOpener.proxies['http']
else:
if not proxy.lower().startswith('http://'):
proxy = 'http://%s' % proxy
self.urlOpener.proxies['http'] = proxy
def get_proxy(self):
"""Return the used proxy or an empty string."""
return self.urlOpener.proxies.get('http', '')
def do_adult_search(self, doAdult,
cookie_id=_cookie_id, cookie_uu=_cookie_uu):
"""If doAdult is true, 'adult' movies are included in the
search results; cookie_id and cookie_uu are optional
parameters to select a specific account (see your cookie
or cookies.txt file."""
for index in xrange(len(self.urlOpener.addheaders)):
if self.urlOpener.addheaders[index][0] == 'Cookie':
del self.urlOpener.addheaders[index]
break
if doAdult:
c_header = 'id=%s; uu=%s' % (cookie_id, cookie_uu)
self.urlOpener.addheaders += [('Cookie', c_header)]
def _retrieve(self, url, size=-1):
"""Retrieve the given URL."""
return self.urlOpener.retrieve_unicode(url, size=size)
def _get_search_content(self, kind, ton, results):
"""Retrieve the web page for a given search.
kind can be tt (for titles) or nm (for names)
ton is the title or the name to search.
results is the maximum number of results to be retrieved."""
params = 'q=%s&%s=on&mx=%s' % (quote_plus(ton), kind, str(results))
cont = self._retrieve(imdbURL_search % params)
if cont.find('more than 500 partial matches') == -1:
return cont
# The retrieved page contains no results, because too many
# titles or names contain the string we're looking for.
if kind == 'nm':
params = 'q=%s;more=nm' % quote_plus(ton)
else:
params = 'q=%s;more=tt' % quote_plus(ton)
size = 22528 + results * 512
return self._retrieve(imdbURL_search % params, size=size)
def _search_movie(self, title, results):
# The URL of the query.
# XXX: To retrieve the complete results list:
# params = urllib.urlencode({'more': 'tt', 'q': title})
##params = urllib.urlencode({'tt': 'on','mx': str(results),'q': title})
#params = 'q=%s&tt=on&mx=%s' % (quote_plus(title), str(results))
#cont = self._retrieve(imdbURL_search % params)
cont = self._get_search_content('tt', title, results)
return search_movie_parser.parse(cont, results=results)['data']
def get_movie_main(self, movieID):
if not self.isThin:
cont = self._retrieve(imdbURL_movie % movieID + 'combined')
else:
cont = self._retrieve(imdbURL_movie % movieID + 'maindetails')
return movie_parser.parse(cont)
def get_movie_plot(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'plotsummary')
return plot_parser.parse(cont)
def get_movie_awards(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'awards')
return movie_awards_parser.parse(cont)
def get_movie_taglines(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'taglines')
return taglines_parser.parse(cont)
def get_movie_keywords(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'keywords')
return keywords_parser.parse(cont)
def get_movie_alternate_versions(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'alternateversions')
return alternateversions_parser.parse(cont)
def get_movie_crazy_credits(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'crazycredits')
return crazycredits_parser.parse(cont)
def get_movie_goofs(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'goofs')
return goofs_parser.parse(cont)
def get_movie_quotes(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'quotes')
return quotes_parser.parse(cont)
def get_movie_release_dates(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'releaseinfo')
return releasedates_parser.parse(cont)
def get_movie_vote_details(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'ratings')
return ratings_parser.parse(cont)
def get_movie_official_sites(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'officialsites')
return officialsites_parser.parse(cont)
def get_movie_trivia(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'trivia')
return trivia_parser.parse(cont)
def get_movie_connections(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'movieconnections')
return connections_parser.parse(cont)
def get_movie_technical(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'technical')
return tech_parser.parse(cont)
def get_movie_business(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'business')
return business_parser.parse(cont)
def get_movie_literature(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'literature')
return tech_parser.parse(cont)
def get_movie_locations(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'locations')
return locations_parser.parse(cont)
def get_movie_soundtrack(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'soundtrack')
return soundtrack_parser.parse(cont)
def get_movie_dvd(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'dvd')
return dvd_parser.parse(cont)
def get_movie_recommendations(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'recommendations')
return rec_parser.parse(cont)
def get_movie_external_reviews(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'externalreviews')
return externalrev_parser.parse(cont)
def get_movie_newsgroup_reviews(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'newsgroupreviews')
return newsgrouprev_parser.parse(cont)
def get_movie_misc_sites(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'miscsites')
return misclinks_parser.parse(cont)
def get_movie_sound_clips(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'soundsites')
return soundclips_parser.parse(cont)
def get_movie_video_clips(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'videosites')
return videoclips_parser.parse(cont)
def get_movie_photo_sites(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'photosites')
return photosites_parser.parse(cont)
def get_movie_news(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'news')
return news_parser.parse(cont)
def get_movie_amazon_reviews(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'amazon')
return amazonrev_parser.parse(cont)
def get_movie_guests(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'epcast')
return guests_parser.parse(cont)
def get_movie_merchandising_links(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'sales')
return sales_parser.parse(cont)
def get_movie_episodes(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'episodes')
data_d = episodes_parser.parse(cont)
# set movie['episode of'].movieID for every episode of the series.
if data_d.get('data', {}).has_key('episodes'):
nr_eps = 0
for season in data_d['data']['episodes'].values():
for episode in season.values():
episode['episode of'].movieID = movieID
nr_eps += 1
# Number of episodes.
if nr_eps:
data_d['data']['number of episodes'] = nr_eps
return data_d
def get_movie_episodes_rating(self, movieID):
cont = self._retrieve(imdbURL_movie % movieID + 'epdate')
data_d = eprating_parser.parse(cont)
# set movie['episode of'].movieID for every episode.
if data_d.get('data', {}).has_key('episodes rating'):
for item in data_d['data']['episodes rating']:
episode = item['episode']
episode['episode of'].movieID = movieID
return data_d
def _search_person(self, name, results):
# The URL of the query.
# XXX: To retrieve the complete results list:
# params = urllib.urlencode({'more': 'nm', 'q': name})
##params = urllib.urlencode({'nm': 'on', 'mx': str(results), 'q': name})
#params = 'q=%s&nm=on&mx=%s' % (quote_plus(name), str(results))
#cont = self._retrieve(imdbURL_search % params)
cont = self._get_search_content('nm', name, results)
return search_person_parser.parse(cont, results=results)['data']
def get_person_main(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'maindetails')
ret = maindetails_parser.parse(cont)
ret['info sets'] = ('main', 'filmography')
return ret
def get_person_filmography(self, personID):
return self.get_person_main(personID)
def get_person_biography(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'bio')
return bio_parser.parse(cont)
def get_person_awards(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'awards')
return person_awards_parser.parse(cont)
def get_person_other_works(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'otherworks')
return otherworks_parser.parse(cont)
def get_person_agent(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'agent')
return agent_parser.parse(cont)
def get_person_publicity(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'publicity')
return publicity_parser.parse(cont)
def get_person_official_sites(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'officialsites')
return person_officialsites_parser.parse(cont)
def get_person_news(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'news')
return news_parser.parse(cont)
def get_person_episodes(self, personID):
cont = self._retrieve(imdbURL_person % personID + 'filmoseries')
return person_series_parser.parse(cont)
|