So I was using IMDBpy for a few years for a film database program I’m working on. But after its been changed to Cinemagoer, I haven’t been able to get it working consistently.
<code>import os
os.system('git+https://github.com/cinemagoer/cinemagoer')
os.system('pip install cinemagoer')
from imdb import Cinemagoer
# create an instance of the Cinemagoer class
ia = Cinemagoer()
# get a movie
movie = ia.get_movie('0133093')
</code>
<code>import os
os.system('git+https://github.com/cinemagoer/cinemagoer')
os.system('pip install cinemagoer')
from imdb import Cinemagoer
# create an instance of the Cinemagoer class
ia = Cinemagoer()
# get a movie
movie = ia.get_movie('0133093')
</code>
import os
os.system('git+https://github.com/cinemagoer/cinemagoer')
os.system('pip install cinemagoer')
from imdb import Cinemagoer
# create an instance of the Cinemagoer class
ia = Cinemagoer()
# get a movie
movie = ia.get_movie('0133093')
It always produces the same “ModuleNotFoundError: No module named ‘imdb'” error.
Any help on this would be fantastic, I’ve love to get my program working again.