Using IMDbPy it is painfully easy to access movies from the IMDB site:
import imdb access = imdb.IMDb() movie = access.get_movie(3242) # random ID print 'title: %s year: %s' % (movie['title'], movie['year'])
However I see no way to get the picture or thumbnail of the movie cover. Suggestions?
Note:
…
If for some reason you can’t use the above, you can always use something like BeautifulSoup to get the cover url.