View Pit Stop page for race #83 by samiraarancibia123426 — Ghost race
View profile for samiraarancibia (samiraarancibia123426)
Official speed | 31.35 wpm (167.66 seconds elapsed during race) |
---|---|
Race Start | June 8, 2025 12:48:25am UTC |
Race Finish | June 8, 2025 12:51:13am UTC |
Outcome | No win (3 of 11) |
Opponents |
4. liz_mariela (29.40 wpm) 5. sharick_chungara (26.14 wpm) 6. yarot123 (26.03 wpm) 7. tocsky (25.10 wpm) 8. jhulmab (24.01 wpm) |
Accuracy | 95.0% |
Points | 36.57 |
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 ) |