View Pit Stop page for race #45 by jhonny_ct — Ghost race
View profile for Jhonny Condori (jhonny_ct)
Official speed | 28.02 wpm (187.58 seconds elapsed during race) |
---|---|
Race Start | July 7, 2025 1:22:38am UTC |
Race Finish | July 7, 2025 1:25:45am UTC |
Outcome | No win (10 of 13) |
Opponents |
2. beltran_tarqui (40.39 wpm) 6. sharick_chungara (30.68 wpm) 8. liz_mariela (29.33 wpm) 9. alex_ramos (28.08 wpm) 11. nessa2 (26.78 wpm) |
Accuracy | 96.0% |
Points | 32.69 |
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 ) |