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