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