How to Perform an IMDB API Query for Movie Data? or What's the Best Way to Use IMDB API Query for Fet

20 Replies, 1222 Views

If you’re stuck on IMDb API query, try the ‘cinemagoer’ Python lib.

```python
from imdb import Cinemagoer
ia = Cinemagoer()
movie = ia.get_movie('0133093')
print(movie['title'], movie['year'])
```

It’s a wrapper around IMDb’s data. Super easy for basic stuff.



Users browsing this thread: 1 Guest(s)