Get personalized movie and TV show recommendations based on your Plex libraries and ratings. The more you rate, the better it learns your preferences!
- Shows you movies and TV shows you might like based on your ratings
- Learns your preferences over time
- Adds recommendations to your Plex watchlist
- Creates and manages Plex collections
- Works with your existing Plex libraries
The app runs completely independently of your Plex server. It only interacts with Plex to:
- Read your library contents during initial scan
- Add items to your watchlist when requested
- Create/modify collections when requested
- Fetch poster images for display
All recommendation logic, learning, and data storage happens locally in the app. Your Plex server is never modified without explicit actions from you.
- Rate movies and shows from 1-10
- Skip things you're not interested in
- Block items you never want to see
- Go back to previous recommendations
- Gets better the more you use it
- Works directly with your Plex server
- Adds items to your Plex watchlist
- Creates collections in Plex
- Auto-adds highly rated movies to collections
- A Plex server
- Free API keys from:
- Your Plex token
- Download the latest Windows release
- Run the executable
- Enter your Plex and API information
- Select which libraries to use
- Start rating content!
- Download the latest source release.
# Install dependencies
brew install python@3.11
brew install sqlite3
# Clone repository
git clone https://github.com/gorgarp/recommender.git
cd recommender
# Create virtual environment
python3 -m venv venv
source venv/bin/activate
# Install requirements
pip install -r requirements.txt
# Run the application
python main.py
- Install dependencies:
# Ubuntu/Debian
sudo apt-get update
sudo apt-get install python3.11 python3-pip python3-venv sqlite3 python3-pyqt6
# Fedora
sudo dnf install python3.11 python3-pip python3-virtualenv sqlite python3-pyqt6
# Clone repository
git clone https://github.com/gorgarp/recommender.git
cd recommender
# Create virtual environment
python3 -m venv venv
source venv/bin/activate
# Install requirements
pip install -r requirements.txt
# Run the application
python main.py
- In the Configuration tab:
- Enter your Plex URL (e.g., http://localhost:32400)
- Add your Plex token
- Add your TVDB and TMDB API keys
- Click "Save Configuration"
- Click "Load Libraries" to see your Plex libraries
- Select which libraries to include
- Optional: Set up collection preferences
- Choose a collection name
- Set rating threshold for auto-adding
- Click "Scan Libraries" to begin
- Open the Movies or TV Shows tab
- Rate items from 1-10
- Skip items you don't want to rate
- Block items you never want to see
- Use the Back button to return to previous items
- Movies can be added to collections automatically or manually
- Set a minimum rating to auto-add movies to collections
- Configure your preferred collection name
- Collections appear directly in your Plex library
- Add any item to your Plex watchlist
- Clear your entire watchlist from the Configuration tab
- Items sync with your Plex server
-
Can't connect to Plex?
- Check your Plex URL
- Verify your token
- Make sure Plex is running
-
Recommendations not improving?
- Rate more items
- Try using the full rating scale
- Check if library scan completed
-
Features not working?
- Verify API keys
- Check error messages in Configuration tab
- Try rescanning libraries
This project is under the GPLv3 License - see LICENSE file.