-
-
Save jkordish/8848662 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import urllib2 | |
import gzip | |
import os | |
from subprocess import call | |
''' | |
Updates Transmission Blocklist with specified blocklist file. Must be run as root | |
if using default blocklist_path directory. | |
''' | |
blocklist_path = '/var/lib/transmission-daemon/info/blocklists/' | |
blocklist_url = 'http://list.iblocklist.com/?list=bt_level1&fileformat=p2p&archiveformat=gz' | |
print "Removing old blocklist.txt file..." | |
os.remove(blocklist_path + 'blocklist.txt') | |
print "Downloading new blocklist from %s" % blocklist_url | |
file = urllib2.urlopen(blocklist_url) | |
download = open(blocklist_path + 'blocklist.gz', 'wb') | |
download.write(file.read()) | |
download.close() | |
print "Gunzipping blocklist.gz..." | |
unzip = gzip.open(blocklist_path + 'blocklist.gz') | |
output = open(blocklist_path + 'blocklist.txt', 'w') | |
output.write(unzip.read()) | |
print "Cleaning up..." | |
os.remove(blocklist_path + 'blocklist.gz') | |
print "Bouncing Transmission Daemon..." | |
call(["pkill", "-HUP", "transmission-daemon"]) | |
print "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment