A content-based movie recommender system built with Python, Streamlit, and TMDB API.
It suggests similar movies based on the one you select and displays their posters.
🔗 Live Demo: Movie Recommender System
- Interactive Streamlit web app
- Choose a movie and get top 5 similar recommendations
- Fetches movie posters using TMDB API
- Lightweight and easy to deploy on Render / Heroku
- Frontend/Backend: Streamlit
- Data Handling: Pandas, Pickle
- Similarity Computation: Cosine Similarity / Precomputed Matrix
- API: TMDB API for fetching movie posters
git clone https://github.com/your-username/movie-recommender-system.git
cd movie-recommender-systempython -m venv venv
source venv/bin/activate # For Linux/Mac
venv\Scripts\activate # For Windowspip install -r requirements.txtstreamlit run app.py