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