Home

Awesome

What to watch?

I have a whole lot of unwatched movies, and deciding what to watch is not an easy thing to do.

Let's automate!

Scanning all my movies

Currently, It only scans folders for movies, fetches their data from the OMDB API, and saves the json files in a folder. I then use some jq magic to filter out movies. I'll probably code something custom that allows you to better filter out movies.

Usage

Copy the sample config file: cp config.py.example config.py

Add your movie folder paths to the PATHS list in config file.

Run python watch.py

Todo

Currentl I do stuff like: jq ". | select(.imdb_rating != \"N/A\") | select(.imdb_rating | tonumber >= 8.0) | .title, .imdb_rating" < *.json