PlotPilot is a terminal-based tool to explore movie and TV series data using the OMDb API. It displays detailed information, episode summaries, and visualizes ratings—all in your terminal, with optional poster images (buggy and im tired).
- Search for movies or series by title and view details with poster (if supported)
- Show full synopsis for a movie or series
- List episodes with summaries and ratings for a season
- Visualize episode ratings for a season or all seasons
-
Python 3.7+
-
OMDb API key (get one at omdbapi.com/apikey.aspx)
-
Install dependencies:
pip install -r requirements.txt
-
Create a
.env
file with your OMDb API key:OMDB_API_KEY=your_api_key_here
-
Run commands from your terminal:
python plotpilot.py search "Inception"
python plotpilot.py synopsis "Inception"
python plotpilot.py episodes "Breaking Bad" --season 1
python plotpilot.py ratings "Breaking Bad"