View Pit Stop page for race #117 by bladevampirek — Ghost race
View profile for Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)
Official speed | 62.33 wpm (65.07 seconds elapsed during race) |
---|---|
Race Start | September 4, 2019 10:42:25pm UTC |
Race Finish | September 4, 2019 10:43:30pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. landarian (74.81 wpm) |
Accuracy | 98.0% |
Points | 38.44 |
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) |