Configuration - Shravsssss/MovieRecommender GitHub Wiki
Configuration
Setting Up API Keys
To run the App, you will need API keys for OMDB and TMDB to fetch movie information. Follow these steps:
- OMDB API Key: Sign up at OMDB to get your API key.
- TMDB API Key: Register at TMDB and request an API key.
Update app.py
with the API keys:
OMDB_API_KEY = 'your_omdb_api_key'
TMDB_API_KEY = 'your_tmdb_api_key'