GoodKnight (goodknight)

Race #13

View Pit Stop page for race #13 by goodknightGhost race

View profile for GoodKnight (goodknight)

Official speed 82.24 wpm (50.19 seconds elapsed during race)
Race Start August 17, 2023 3:58:30pm UTC
Race Finish August 17, 2023 3:59:20pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 50.71
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)