Charts a TV show's episodes by IMDB rating.
Downloads the episodes and their ratings from IMDB and then creates an chart image for those ratings. The image is saved as a PNG file. Written in Python.
I wrote this over a couple of evenings. It comes as is and without warranty!
Example - Chart Game of Thrones Episodes:
Windows:
chart tt0944947
Mac / Linux:
./chart tt0944947
Creates:
SpeedSheet - Python
SpeedSheet - Pillow (Python Image Library)
SpeedSheet - Beautiful Soup
chart imdb_show_code
Example (game of thrones):
chart tt0944947
Create the virtual environment:
python -m venv venv
Start the environment:
venv\Scripts\activate
Install the libraries:
pip install -r requirements.txt
Create the virtual environment:
python3 -m venv venv
Start the environment:
. venv/bin/activate
Install the libraries:
pip install -r requirements.txt
The inspiration for this app came from this reddit post where someone charted the decline of the simpsons in a colorful chart.
