Questions tagged [imdbpy]

IMDbPY is a Python package useful to retrieve and manage the data of the IMDb movie database about movies, people, characters and companies.

128 questions
0
votes
1 answer

does imdbpy2sql.py export soundtracks to mysql?

I downloaded all data from imdb.org/interfaces and fed that to imdbpy2sql.py. The script sucessfully imports all movies, actors, etc. But it does not create tables for soundtracks (trivia, crazy-credits, etc.) Is the script designed to import…
Jabb
  • 3,414
  • 8
  • 35
  • 58
0
votes
2 answers

SQLobject installed but IMDbPY fail

I tried using SQLobject from IMDbPY and Python said the driver didn't work- I'm running PostgreSQL 9.2. C:\Users\dom\AppData\Roaming\Python\Scripts>python imdbpy2sql.py -d /imdb -u 'postgres://sid:asdf@host/imdb' Traceback (most recent call…
trianIMDB
  • 1
  • 2
0
votes
1 answer

Using imdbpy2sql.py to populate PostgreSQL

I'm trying to use imdbpy2sql.py documented at http://imdbpy.sourceforge.net/docs/README.sqldb.txt but I am having trouble with syntax & directories. To simplify things I loaded the IMDb files in a subdirectory of…
trianIMDB
  • 1
  • 2
0
votes
2 answers

How do i import imdb list files into mysql database on windows?

Am using MYSQL, imdbpy(to import data). I have never used imdbpy before and have no idea of how python script works.Here is the list of text files from which am gonna use a few to import into my database.…
user2352788
  • 1
  • 1
  • 1
-1
votes
1 answer

IMDbPY handling None object

I'm trying to pull data about cinematographers from IMDbPY and i'm encountering a null object. I'm not sure how to deal with that None object in the code. Could someone help me out please? here's where I have reached. from imdb import IMDb,…
teneb
  • 11
  • 1
-1
votes
1 answer

IMDbPY get the stars of a movie

I was able to get the cast of the movie like this: #!/usr/bin/env python import imdb ia = imdb.IMDb() s_result = ia.search_movie('The Untouchables') the_unt = s_result[0] print the_unt['cast'] However, that gave all the cast, i am looking for just…
Marco Dinatsoli
  • 10,322
  • 37
  • 139
  • 253
-2
votes
1 answer

imdbpy - cannot get the episode ids

I'm a beginner at Python. I am trying to get some information about a movie using Imdbpy. The code looks like this: ia = IMDb() results = ia.search_movie(movie_name) movie_id = results[0].getID() movie = ia.get_movie(movie_id) and if the movie_name…
zedmahdi
  • 9
  • 2
-3
votes
2 answers

How to get some pictures of a movie?

I am trying to get some pictures of a movie. I am currently using imdb module (Python: IMDbpy). I don't know how to get these images with the name of the movie or its IMDB id.
Atori
  • 25
  • 3
1 2 3
8
9