Getting the information is easy enough...

>>> import json
>>> import requests
>>> r = 
>>> requests.get('http://ci.debian.net/data/status/unstable/amd64/packages.json')
>>> data = json.loads(r.text)
>>> for i in data:
...     if i['status'] == 'fail':
...         print i['package'] + " failed tests."
...         print "URL: http://ci.debian.net/#package/"; + i['package']
...         print "Log:
http://ci.debian.net/data/packages/unstable/amd64/"; + i['package'][:1]
+ "/" + i['package'] + '/latest-autopkgtest/log'


Now just need to figure out tracker itself...


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to