Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

74
votes
12answers
37k views

Does IMDB provide an API?

I recently found a movie organizer application which fetches its data from the IMDB database. Does IMDB provide an API for this, or any third party APIs available?
10
votes
8answers
14k views

Connecting to IMDB

Has any one done this before? It would seem to me that there should be a webservice but i can't find one. I am writing an application for personal use that would just show basic info from IMDB.
5
votes
1answer
259 views

Can I retrieve IMDb's movie recommendations for a given movie using IMDbPY?

I'm using IMDbPY to retrieve all kinds of data about movies. For example, if I have a movie object of "Pulp Fiction (1994)" then I can get the name of its (first) director like this: >>> ...
4
votes
2answers
710 views

How do you find IMDB Movie ID?

IMDB provides plain text files user's can download and use which can be found here: IMDB Plain Text Files which is great but I don't see the ID used for each movie in any of the files. Given IMDB ...
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'], ...
3
votes
1answer
161 views

How do I install IMDbPY on Windows?

I would like to start using IMDbPY but I can't find a Windows installer on their site. What is the most simple way to install it? Is there a way to install it using my Python interpreter?
3
votes
5answers
1k views

Start and setup in-memory DB using Spring

I'm writing a small demo application in Java using Spring, that needs to have access to a database. It should run on different machines and it would be far too much effort to setup a real database. ...
3
votes
4answers
815 views

Which site supply movie information with API for free?

I need: movie title director cast story I cannot use IMDB.
3
votes
2answers
744 views

Where to start for my java program (Using the folder names to get info from IMDB)

I finished first year comp sci. And i want to spend some time working on the things they have taught us in the first year (lot of java and a bit of C)... Anyways as a project, i wanted to do ...
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
1answer
315 views

Why do I get so many warnings and some errors when using IMDbPY?

I'm using IMDbPY to retrieve data from IMDb. I'm getting the right results and everything looks OK except one thing: No matter what I do, I get warnings. The results are fine, but they appear only ...
2
votes
5answers
3k views

Given an IMDB movie id, how do I programmatically get its poster image?

movie id tt0438097 can be found at http://www.imdb.com/title/tt0438097/ What's the url for its poster image?
1
vote
1answer
45 views

import python module when using mod_python

i have been using imdbpy for some time. I was interested in making a very basic webservice to return json data. I have a basic system working earlier today however after a reboot i now get the ...
1
vote
1answer
45 views

Movie Metadata Storage

Assuming I can query IMDB etc successfully and retrieve metadata for an avi. Is there an existing file format for that metadata to store beside the avi? I can create my own XML/JSON based ...
1
vote
3answers
214 views

How does the IMDB search work so fast?

There is a search box in header navigation bar (http://www.imdb.com/) and when I type 2 (or 3) letters fast, for less than half a second, I can see 6 results coming out!!?? Does anyone have any idea ...
1
vote
1answer
419 views

IMDB to MySQL: Insert IMDB data into MySQL database

I’m looking for a solution to import all the IMDB data into my own MySQL database. I’ve downloaded all the IMDB data files from their homepage which are all in the file format *.list (in Windows). I ...
1
vote
1answer
181 views

Check if intent uri is available

I have an app that sometimes links to imdb. I can do this with http://m.imdb.com/find or if it is available imdb:///find. My trouble is I can't find a way to check whether the imdb:// is available ...
1
vote
2answers
165 views

SQL UPDATE isn't updating the database, is there something wrong with my SQL statement?

This is my first attempt at a 'real' C# program. It takes a specified directory, extracts the file name (without extension) and writes them to an SQL database. This data is then read back into an ...
1
vote
1answer
634 views

Loading of IMDB posters using JQuery not working

I wrote a small utility which helps compare films using an (un-official) API available at imdbapi.com The api even returns the path of the film poster which I intend to display on my page. The issue ...
1
vote
2answers
367 views

Scraping user reviews from imdb in python

I am deeply in need of an api or a piece of code that can extract the "user reviews" of a certain movie from imdb page. can someone help me please? thanks
1
vote
1answer
390 views

Saving IMDb posters with php

I'm making a script for myself to list my favorite movies. So I nearly finished it but I cannot save the small poster from IMDb with php. I used the file_put_contents() function, but it's creating a ...
1
vote
3answers
150 views

Remote images displaying only sometimes

I maintain a local intranet site that among other things, displays movie poster images from IMDB.com. Until recently, I simply had a perl script download the images I needed and save them to the ...
1
vote
4answers
1k views

IMDB Grabber PHP

I am recieving an error: Notice: Undefined variable: content in C:\wamp\www\includes\imdbgrabber.php on line 17 When using this code: <?php //url $url = 'http://www.imdb.com/title/tt0367882/'; ...
0
votes
1answer
25 views

imdbpy2sql.py getting stuck on FLUSHING MoviesCache

I finally got imbdpy2sql running on Windows 7 with Python 2.7 minGW and pymsql, and it connects to the database fine and creates all the tables but it keeps getting stuck on Flushind MoviesCache and ...
0
votes
0answers
82 views

IMDB web service for windows phone 7 [closed]

I am trying to do an app for imdb movie review in windows phone 7. Please help me out on the web service to connect to for doing this and how to implement this.
0
votes
1answer
66 views

What Did IMDB Use to Code Their iPhone Trivia App?

Their app is very well done, however doesn't seem to use any of the normal controls that come standard with the framework. Now it could be they just did an excellent job of restyling those ...
0
votes
1answer
172 views

how can get info from IMDB in C#

i need a IMDB API for get all info from IMDB now : Does IMDB provide an API for this, or any third party APIs available? except http://www.imdbapi.com/ ==>>because no summaries/description ( i need ...
0
votes
1answer
52 views

Fetch information from loop

I have a huge problem with fetching actors ID from IMDb's website. See the code below. $imdb = new imdb2('0366548'); $acount = 1; $cast = $imdb->cast(); foreach($cast AS $key ...
0
votes
0answers
96 views

Movie catalog like imdb

Someone knows a movie catalog open source software? I want to make a site like http://www.cinenacional.com/peliculas and before start to develop en whole site from scratch I'd like to know if someone ...
0
votes
2answers
894 views

How to get movie metadata from IMDB using java?

I am creating a simple recommender system that implements content filtering algorithm. I need to test the system with movie metadata but this has been very difficult. I know of IMDB, please, how do I ...
0
votes
2answers
249 views

Scraping IMDB's Top 250 List gives some results in foreign languages?

I'm having my server grab this page to download the full list for a movie analysis I'm doing: http://www.imdb.com/chart/top But when it does a lot of the movie titles are appearing in another ...
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 ...
0
votes
2answers
445 views

How would YOU compute IMDB movie rating?

I'm doing this only for learning purposes. I've no intentions of reversing the methods of IMDB. I asked myself I owned IMDB or similar website. How would I compute the movie rating? All I can think ...
0
votes
1answer
124 views

Dock an item on top of UITableView like imdb app on ipad?

I want to do something similar to the left UITableView on imdb app on ipad. Once you have selected an item, it will become the first item on the top and it will dock there. When you flick the list ...
0
votes
1answer
191 views

What movie website allows people to scrape it? [closed]

I've wanted to make a C# library to scrape movie information and return it to the application, but someone told me that it's against the TOS. RottenTomatoes seems to have no problems with it from ...
0
votes
1answer
152 views

Performance senario RAM Disk and In memory database(IMDB)?

I was just wondering, we have in memory database(IMDB) and we also have a way to put the database in a RAM Disk. So which would be faster? You valuable comments and experiences
0
votes
1answer
374 views

TDD for IMDB html scraper

I'm currently developing a TDD idmb html scraper which ill extract certain fields from the imdb webpage. Eg. Title, Synopsis,Cast etc in C++. I'm just wondering if i have done the TDD right , i have ...
-2
votes
1answer
136 views

Suggestions for creating a website/online community like IMDB [closed]

I am planning to create a website like IMDB. I am not sure where exactly to start. So I thought I would ask here for suggestions. I need a CMS to manage the data? Is it better to start with PHP, ...