Fátima (nessa2)

Race #59

View Pit Stop page for race #59 by nessa2Ghost race

View profile for Fátima (nessa2)

Official speed 23.62 wpm (174.77 seconds elapsed during race)
Race Start July 3, 2025 2:29:38am UTC
Race Finish July 3, 2025 2:32:33am UTC
Outcome No win (11 of 11)
Opponents 6. sharick_chungara (28.59 wpm)
Accuracy 93.0%
Points 14.57
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)