Sunday, February 28, 2016

uTorrent download subtitles with python after torrent finishes

1. Install Subliminal

2. In uTorrent preferences, enter subliminal download -l en "%D" in run this program after a torrent finishes


** See how to run in a batch with other programs

Tuesday, February 23, 2016

uTorrent download notification in PushBullet + python

1. Create API key on PushBullet site under account settings

2. Install pushbullet.py

3. Create a file called push.py with the following:


import sys
from pushbullet import Pushbullet

api_key = "API_KEY"
pb = Pushbullet(api_key)
pb.push_note("Downloaded", sys.argv[1])


4. In uTorrent preferences, enter "push.py" %N in run this program after a torrent finishes


** See how to run in a batch with other programs