View Pit Stop page for race #67 by tocsky — Ghost race
View profile for Alvaro Moyata (tocsky)
Official speed | 26.05 wpm (158.46 seconds elapsed during race) |
---|---|
Race Start | July 3, 2025 2:29:38am UTC |
Race Finish | July 3, 2025 2:32:17am UTC |
Outcome | No win (8 of 11) |
Opponents |
1. beltran_tarqui (37.02 wpm) 6. sharick_chungara (28.59 wpm) 9. alex_ramos (25.84 wpm) 10. pedro_serrudo (24.25 wpm) 11. nessa2 (23.62 wpm) |
Accuracy | 95.0% |
Points | 16.06 |
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) |