jhonny (jhonnymartinez)

Race #12

View Pit Stop page for race #12 by jhonnymartinezGhost race

View profile for jhonny (jhonnymartinez)

Official speed 23.27 wpm (177.40 seconds elapsed during race)
Race Start June 4, 2025 7:57:09pm UTC
Race Finish June 4, 2025 8:00:06pm UTC
Outcome No win (10 of 17)
Opponents 3. alexlopez114387 (31.06 wpm)
5. samiraarancibia123426 (27.80 wpm)
8. tocsky (24.21 wpm)
9. yarot123 (23.56 wpm)
Accuracy 93.0%
Points 14.35
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)