Omar (obaqueiro)

Race #9

View Pit Stop page for race #9 by obaqueiroGhost race

View profile for Omar (obaqueiro)

Official speed 64.18 wpm (80.77 seconds elapsed during race)
Race Start March 20, 2020 12:43:26am UTC
Race Finish March 20, 2020 12:44:47am UTC
Outcome No win (2 of 3)
Accuracy 97.0%
Points 74.88
Text #10021 (Length: 438 characters)

import urllib2 import urllib import json url = "http://ajax.googleapis.com/ajax/services/search/web?v=1.0&" query = raw_input("What do you want to search for ? >> ") query = urllib.urlencode( {'q' : query } ) response = urllib2.urlopen (url + query ).read() data = json.loads ( response ) results = data [ 'responseData' ] [ 'results' ] for result in results: title = result['title'] url = result['url'] print ( title + '; ' + url )