View Pit Stop page for race #3 by theomt1 — Ghost race
View profile for tooheeee (theomt1)
Official speed | 56.40 wpm (73.19 seconds elapsed during race) |
---|---|
Race Start | May 27, 2025 6:21:18am UTC |
Race Finish | May 27, 2025 6:22:31am UTC |
Outcome | No win (7 of 22) |
Opponents |
1. mr_jabi (70.30 wpm) 3. drepram (68.49 wpm) 11. kingarth (51.01 wpm) |
Accuracy | 97.0% |
Points | 34.78 |
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) |