Pads and myepisodes.com
Posted: January 27th, 2009, 5:44 am
Hi All,
Thought i would share some success getting Pads / Myepisodes working with Sabnzbd. I know from my own searches that no one has looked into getting pads and sab working, but i spent sometime last night and hacked the pads code so it will submit any found ids to sabnzbd.
I do not know python so excuse the shoddiness of the coding, but eh it works Basically download pads from (http://www.piesweb.co.uk/), and setup a profile on myepisodes.com.
Edit the pads code replacing the function called Queue(id) with the following
Simply change the ip and port to match your own sabnzbd details on both lines. Create a cronjob that runs every hour and hey presto, when a new episode has been found and exists on newzbin, the id will be sent to sabnzbd for downloading.. good eh
All thanks to Pie for his hard work in creating pads.
Thought i would share some success getting Pads / Myepisodes working with Sabnzbd. I know from my own searches that no one has looked into getting pads and sab working, but i spent sometime last night and hacked the pads code so it will submit any found ids to sabnzbd.
I do not know python so excuse the shoddiness of the coding, but eh it works Basically download pads from (http://www.piesweb.co.uk/), and setup a profile on myepisodes.com.
Edit the pads code replacing the function called Queue(id) with the following
Code: Select all
def QueueID(id):
DeBug('trying to connect to http://192.168.11.2:8080/sabnzbd/api?mode=addid&name=' + id + '&pp=3&cat=TV')
try:
sabnzbd = urlopen('http://192.168.11.2:8080/sabnzbd/api?mode=addid&name=' + id + '&pp=3&cat=TV')
except:
print "Unable to connect to Sabnzb"
print "Exiting..."
sys.exit()
All thanks to Pie for his hard work in creating pads.