Fátima (nessa2)

Race #73

View Pit Stop page for race #73 by nessa2Ghost race

View profile for Fátima (nessa2)

Official speed 28.35 wpm (185.40 seconds elapsed during race)
Race Start September 10, 2025 10:14:15pm UTC
Race Finish September 10, 2025 10:17:20pm UTC
Outcome No win (2 of 8)
Opponents 1. fanor (32.39 wpm)
Accuracy 96.0%
Points 33.08
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 )