View Pit Stop page for race #4 by yarot123 — Ghost race
View profile for Yarot Sanabria L. (yarot123)
| Official speed | 26.51 wpm (155.71 seconds elapsed during race) |
|---|---|
| Race Start | May 28, 2025 8:03:02pm UTC |
| Race Finish | May 28, 2025 8:05:38pm UTC |
| Outcome | No win (7 of 15) |
| Opponents |
1. jas_el (37.94 wpm) 2. maria_ortega10 (33.53 wpm) 5. alex_ramos (28.09 wpm) 6. sharick_chungara (27.58 wpm) 9. tocsky (23.90 wpm) |
| Accuracy | 95.0% |
| Points | 16.35 |
| 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) |