View Pit Stop page for race #10 by yarot123 — Ghost race
View profile for Yarot Sanabria L. (yarot123)
Official speed | 23.56 wpm (175.21 seconds elapsed during race) |
---|---|
Race Start | June 4, 2025 7:57:09pm UTC |
Race Finish | June 4, 2025 8:00:04pm UTC |
Outcome | No win (9 of 17) |
Opponents |
3. alexlopez114387 (31.06 wpm) 5. samiraarancibia123426 (27.80 wpm) 8. tocsky (24.21 wpm) 10. jhonnymartinez (23.27 wpm) |
Accuracy | 93.0% |
Points | 14.53 |
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) |