Fátima (nessa2)

Race #80

View Pit Stop page for race #80 by nessa2Ghost race

View profile for Fátima (nessa2)

Official speed 25.95 wpm (159.08 seconds elapsed during race)
Race Start October 13, 2025 1:50:54am UTC
Race Finish October 13, 2025 1:53:33am UTC
Outcome Win (1 of 6)
Opponents 2. luis_univ (25.80 wpm)
3. jhony99 (24.09 wpm)
Accuracy 94.0%
Points 16.00
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)