alexVladimirQuecaña (alex_ramos)

Race #94

View Pit Stop page for race #94 by alex_ramosGhost race

View profile for alexVladimirQuecaña (alex_ramos)

Official speed 25.84 wpm (159.75 seconds elapsed during race)
Race Start July 3, 2025 2:29:38am UTC
Race Finish July 3, 2025 2:32:18am UTC
Outcome No win (9 of 11)
Opponents 1. beltran_tarqui (37.02 wpm)
3. maria_ortega10 (34.13 wpm)
5. samiraarancibia123426 (30.55 wpm)
6. sharick_chungara (28.59 wpm)
7. erick_vargas (27.18 wpm)
8. tocsky (26.05 wpm)
10. pedro_serrudo (24.25 wpm)
11. nessa2 (23.62 wpm)
Accuracy 97.0%
Points 15.94
Text #10016 (Length: 344 characters)

import re import sys import urllib2 import BeautifulSoup usage = "Run the script: ./geolocate.py IPAddress" if len(sys.argv)!=2: print(usage) sys.exit(0) if len(sys.argv) > 1: ipaddr = sys.argv[1] geody = "http://www.geody.com/geoip.php?ip=" + ipaddr html_page = urllib2.urlopen(geody).read() soup = BeautifulSoup.BeautifulSoup(html_page)