Fátima (nessa2)

Race #67

View Pit Stop page for race #67 by nessa2Ghost race

View profile for Fátima (nessa2)

Official speed 26.78 wpm (196.27 seconds elapsed during race)
Race Start July 7, 2025 1:22:37am UTC
Race Finish July 7, 2025 1:25:54am UTC
Outcome No win (11 of 13)
Opponents 6. sharick_chungara (30.68 wpm)
9. alex_ramos (28.08 wpm)
Accuracy 95.0%
Points 31.24
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 )