Jabi (mr_jabi)

Race #3

View Pit Stop page for race #3 by mr_jabiGhost race

View profile for Jabi (mr_jabi)

Official speed 70.30 wpm (58.72 seconds elapsed during race)
Race Start May 27, 2025 6:21:18am UTC
Race Finish May 27, 2025 6:22:17am UTC
Outcome Win (1 of 22)
Opponents 11. kingarth (51.01 wpm)
Accuracy 98.0%
Points 43.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)