spondunoob (spondulix)

Race #385

View Pit Stop page for race #385 by spondulixGhost race

View profile for spondunoob (spondulix)

Official speed 73.62 wpm (55.09 seconds elapsed during race)
Race Start August 28, 2019 11:46:48pm UTC
Race Finish August 28, 2019 11:47:43pm UTC
Outcome No win (2 of 3)
Opponents 1. arc_sec (96.15 wpm)
Accuracy 96.0%
Points 45.40
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)