(sidd_)

Race #179

View Pit Stop page for race #179 by sidd_Ghost race

View profile for (sidd_)

Official speed 110.28 wpm (36.78 seconds elapsed during race)
Race Start July 21, 2019 5:25:30pm UTC
Race Finish July 21, 2019 5:26:07pm UTC
Outcome Win (1 of 4)
Opponents 2. storm (68.08 wpm)
Accuracy 99.0%
Points 68.01
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)