I modified my code from sr = urllib.urlopen(url) search_results = json.loads(sr.read()) for i in search_results['items']: db.results.insert(link_title=i['title']) db.results.insert(url=i['link'])
to sr = urllib.urlopen(url) search_results = json.loads(sr.read()) for i in search_results['items']: db.results.insert(link_title=i['title'],url=i['link']) and it seems to work slightly better, the url is now displayed properly, but the title is not picked up. any ideas? thanks

