Kasper (kaspertypes)

Race #7

View Pit Stop page for race #7 by kaspertypesGhost race

View profile for Kasper (kaspertypes)

Official speed 76.27 wpm (68.91 seconds elapsed during race)
Race Start December 1, 2025 8:29:55pm UTC
Race Finish December 1, 2025 8:31:04pm UTC
Outcome No win (2 of 4)
Accuracy 95.0%
Points 88.98
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 )