Alex Beltran T. (beltran_tarqui)

Race #434

View Pit Stop page for race #434 by beltran_tarquiGhost race

View profile for Alex Beltran T. (beltran_tarqui)

Official speed 40.39 wpm (130.13 seconds elapsed during race)
Race Start July 7, 2025 1:22:38am UTC
Race Finish July 7, 2025 1:24:48am UTC
Outcome No win (2 of 13)
Opponents 6. sharick_chungara (30.68 wpm)
8. liz_mariela (29.33 wpm)
9. alex_ramos (28.08 wpm)
11. nessa2 (26.78 wpm)
Accuracy 93.0%
Points 47.12
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 )