Groozyn (groozyn)

Race #16

View Pit Stop page for race #16 by groozynGhost race

View profile for Groozyn (groozyn)

Official speed 59.24 wpm (69.68 seconds elapsed during race)
Race Start May 18, 2023 3:36:59pm UTC
Race Finish May 18, 2023 3:38:09pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 36.53
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)