View Pit Stop page for race #75 by tocsky — Ghost race
View profile for Alvaro Moyata (tocsky)
Official speed | 29.57 wpm (177.75 seconds elapsed during race) |
---|---|
Race Start | July 7, 2025 1:22:38am UTC |
Race Finish | July 7, 2025 1:25:35am UTC |
Outcome | No win (7 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) 10. jhonny_ct (28.02 wpm) 11. nessa2 (26.78 wpm) |
Accuracy | 96.0% |
Points | 34.49 |
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 ) |