Tagged Questions
IMDbPY is a Python package useful to retrieve and manage the data of the IMDb movie database about movies, people, characters and companies.
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
97 views
IMDbPY Importing to MySQL Problem
I am having a problem while trying to import imdb data from text files to MySQL database using imdbpy2sql.py script.
It throws the following error. It seems like the exception handler code tries to ...
0
votes
1answer
186 views
How can I pass command-line arguments in IronPython?
I am working with IronPython and have got it working somehow. Though, there seems to be no resource on passing command-line arguments to Iron Python. How can I pass command-line arguments to a python ...
0
votes
1answer
24 views
How can I retrieve a given number of movies under a given genre using imdbpy?
I am starting using imdbpy and I am interesting in a way to implement a method with the following specifications:
Inputs:
numberToRetrieve (number of movies to retrive back)
movieGenre (the genre ...
0
votes
1answer
98 views
imdbpy and setuptools - dependency problem
Currently I'm working on one of my first python projects so sorry in advance if some problems seems to be a bit too simple... Anyway.
My simple project uses imdbpy - Python package to access the ...
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 ...
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 ...