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.
```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.
