(e6f4e37l)

Race #24

View Pit Stop page for race #24 by e6f4e37lGhost race

View profile for (e6f4e37l)

Official speed 102.22 wpm (40.74 seconds elapsed during race)
Race Start July 3, 2021 1:30:44pm UTC
Race Finish July 3, 2021 1:31:25pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 63.03
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)