Mikhail (mayham92)

Race #366

View Pit Stop page for race #366 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 50.53 wpm (82.41 seconds elapsed during race)
Race Start December 5, 2021 12:16:37pm UTC
Race Finish December 5, 2021 12:17:59pm UTC
Outcome No win (2 of 2)
Opponents 1. seyranyandavid (57.15 wpm)
Accuracy 98.0%
Points 31.16
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)