akas is gone
This commit is contained in:
parent
926b8ad255
commit
db241cec0e
1 changed files with 3 additions and 4 deletions
|
@ -36,7 +36,7 @@ def delete_url(url, data=None, headers=cache.DEFAULT_HEADERS):
|
||||||
cache.store.delete(url, data, headers)
|
cache.store.delete(url, data, headers)
|
||||||
|
|
||||||
def get_url(id):
|
def get_url(id):
|
||||||
return "http://akas.imdb.com/title/tt%s/" % id
|
return "http://www.imdb.com/title/tt%s/" % id
|
||||||
|
|
||||||
|
|
||||||
def reference_section(id):
|
def reference_section(id):
|
||||||
|
@ -334,7 +334,6 @@ class Imdb(SiteParser):
|
||||||
return self._cache[url]
|
return self._cache[url]
|
||||||
|
|
||||||
def __init__(self, id, timeout=-1):
|
def __init__(self, id, timeout=-1):
|
||||||
# use akas.imdb.com to always get original title:
|
|
||||||
# http://www.imdb.com/help/show_leaf?titlelanguagedisplay
|
# http://www.imdb.com/help/show_leaf?titlelanguagedisplay
|
||||||
self.baseUrl = "http://www.imdb.com/title/tt%s/" % id
|
self.baseUrl = "http://www.imdb.com/title/tt%s/" % id
|
||||||
super(Imdb, self).__init__(timeout)
|
super(Imdb, self).__init__(timeout)
|
||||||
|
@ -628,7 +627,7 @@ def get_movie_by_title(title, timeout=-1):
|
||||||
except:
|
except:
|
||||||
params['q'] = params['q'].encode('utf-8')
|
params['q'] = params['q'].encode('utf-8')
|
||||||
params = urlencode(params)
|
params = urlencode(params)
|
||||||
url = "http://akas.imdb.com/find?" + params
|
url = "http://www.imdb.com/find?" + params
|
||||||
data = read_url(url, timeout=timeout, unicode=True)
|
data = read_url(url, timeout=timeout, unicode=True)
|
||||||
#if search results in redirect, get id of current page
|
#if search results in redirect, get id of current page
|
||||||
r = '<meta property="og:url" content="http://www.imdb.com/title/tt(\d+)/" />'
|
r = '<meta property="og:url" content="http://www.imdb.com/title/tt(\d+)/" />'
|
||||||
|
@ -705,7 +704,7 @@ def get_movie_id(title, director='', year='', timeout=-1):
|
||||||
except:
|
except:
|
||||||
params['q'] = params['q'].encode('utf-8')
|
params['q'] = params['q'].encode('utf-8')
|
||||||
params = urlencode(params)
|
params = urlencode(params)
|
||||||
url = "http://akas.imdb.com/find?" + params
|
url = "http://www.imdb.com/find?" + params
|
||||||
#print url
|
#print url
|
||||||
|
|
||||||
data = read_url(url, timeout=timeout, unicode=True)
|
data = read_url(url, timeout=timeout, unicode=True)
|
||||||
|
|
Loading…
Reference in a new issue