- Create a
.secretsfolder and add acreds.jsonfile in the folder - Add your TMDB api key in the
creds.jsonfile, i.e:
echo '{ "key": "API KEY"}' >> creds.json #Replace API KEY with actual key-
Create a virtual environment
python -m venv venv -
Activate the virtual environment:
source venv/bin/activate #Linuxsource venv/Scripts/activate #Windows- Install dependencies
pip install -r requirements.txt
- Run the
run.pyfile