(sidd_)

Race #168

View Pit Stop page for race #168 by sidd_Ghost race

View profile for (sidd_)

Official speed 104.66 wpm (38.75 seconds elapsed during race)
Race Start July 20, 2019 8:27:44pm UTC
Race Finish July 20, 2019 8:28:23pm UTC
Outcome No win (2 of 6)
Opponents 1. mako640 (107.02 wpm)
3. spondulix (66.15 wpm)
4. keegant (63.38 wpm)
5. storm (56.64 wpm)
Accuracy 98.0%
Points 64.54
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)