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 = ...
2
votes
2answers
178 views
Reading Python Documentation for 3rd party modules
I recently downloaded IMDbpy module..
When I do,
import imdb
help(imdb)
i dont get the full documentation.. I have to do
im = imdb.IMDb()
help(im)
to see the available methods. I dont like ...
1
vote
1answer
87 views
Error returned when running imdbpy2sql.py with MySQL database
I am working on getting IMDbPY installed and working and I have come to a point where I am working on pulling in all of the data from the flat (text) files in to a (MySQL) database.
When I run the ...
0
votes
1answer
37 views
How to extract money value from “grossing” string in IMDbPY
I would like to extract a money value when using IMDbPY to extract datas from IMDB.
My problem is that IMDbPY returns results in the following format, what is a unicode string:
In : ...
0
votes
1answer
113 views
how to query by just giving genre information
I want to get movies according to genre information by using imdbpy. I found IMDb.get_keyword function but it did not work for me. Any idea?
Example:
from imdb import IMDb
ia = IMDb()
print ...