Luis Alberto Delgado Pinto (luis_univ)

Race #37

View Pit Stop page for race #37 by luis_univGhost race

View profile for Luis Alberto Delgado Pinto (luis_univ)

Official speed 25.80 wpm (160.00 seconds elapsed during race)
Race Start October 13, 2025 1:50:54am UTC
Race Finish October 13, 2025 1:53:34am UTC
Outcome No win (2 of 6)
Opponents 1. nessa2 (25.95 wpm)
3. jhony99 (24.09 wpm)
Accuracy 94.0%
Points 15.91
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)