Arguments
EZTV Notifier
EZTV Notifier will, when run, check if there's been new episodes of selected shows released on EZTV since the last check and email the defined recipient with the details.
Setup
$ cp .env.example .env
$ date +%s > last_torrent
$ ./Main.py
Edit .env with your settings. It's all self explanatory. Booleans are false if empty, true otherwise. I've only tested with SMTP on.
The show list needs to be comma separated, I haven't seen any shows that have a comma in their name but feel free to give it a shot, escaping the comma with a backslash.
This currently uses the timestamp of the latest torrent as the cut-off point for the next search... meaning the first search will check every single page of EZTV's torrents. Run date +%s > last_torrent
to prevent this.
This can be set to check every 30 mins using a cron job or similar.
Changes
Argparser added and some cleanup done
All options that can be set in .env can be set as arguments too
This is a non-breaking release, compatible with previous deployments of eztv-notifier. Just pull and merge.