참고 :
- 는 아니 모든 영화는 커버 URL을 가지고있다. (예제의 임의 ID는 그렇지 않습니다.)
- IMDbPy의 최신 버전을 사용하고 있는지 확인하십시오. (IMDB는 그것으로 변경하고, IMDbPy.)
...
import imdb
access = imdb.IMDb()
movie = access.get_movie(1132626)
print "title: %s year: %s" % (movie['title'], movie['year'])
print "Cover url: %s" % movie['cover url']
어떤 이유로 위를 사용할 수없는 경우, 당신은 항상 커버 URL을 얻을 BeautifulSoup로 같은 것을 사용할 수 있습니다 . IMDbPy 메일 링리스트에서
from BeautifulSoup import BeautifulSoup
import imdb
access = imdb.IMDb()
movie = access.get_movie(1132626)
page = urllib2.urlopen(access.get_imdbURL(movie))
soup = BeautifulSoup(page)
cover_div = soup.find(attrs={"class" : "photo"})
cover_url = (photo_div.find('img'))['src']
print "Cover url: %s" % cover_url
영화의 'cover url'은 저에게도 false를 반환합니다. – Sam