Tagged Questions
4
votes
2answers
2k views
How do you get a thumbnail of a movie using IMDbPy?
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'], ...
2
votes
1answer
43 views
How to retrieve the storyline paragraph with imdbpy?
So far, I haven't figured out how to retrieve the short description paragraph from imdb with imdbpy.
I can retrieve a very (very) long plot this way though :
ia = IMDb()
movie = ...
0
votes
1answer
177 views
create xml file from LIST file format
I have downloaded some .LIST file from imdb database, and I wanna use them for some social network analyses reason (research with references), using a SNA software (where input can be in xml or ...