View Pit Stop page for race #61 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 92.20 wpm (43.99 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 11:30:05pm UTC |
Race Finish | August 8, 2019 11:30:49pm UTC |
Outcome | No win (2 of 4) |
Opponents |
1. spondulix (97.45 wpm) 3. lesirh (66.38 wpm) 4. vfctyrant (58.45 wpm) |
Accuracy | 97.0% |
Points | 56.86 |
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) |