[b]"What's the best way to fetch IMDb rating data using a Python API?"[/b] or [b]"How can I access IMDb rating dat

18 Replies, 1736 Views

Yo, check out Cinemagoer (formerly IMDbPY). It’s updated and works for pulling IMDb rating data Python API style.

Install with `pip install cinemagoer` and you’re good to go.

Example:
```python
from imdb import Cinemagoer
ia = Cinemagoer()
movie = ia.get_movie('0120338')
print(movie['rating'])
```

Works like a charm!

Messages In This Thread



Users browsing this thread: 1 Guest(s)