Gerome Masiglat (gpmasiglat)

Race #1

View Pit Stop page for race #1 by gpmasiglatGhost race

View profile for Gerome Masiglat (gpmasiglat)

Official speed 21.94 wpm (188.15 seconds elapsed during race)
Race Start July 5, 2023 11:06:56am UTC
Race Finish July 5, 2023 11:10:04am UTC
Outcome No win (9 of 10)
Opponents 6. d4ydr34mer (27.99 wpm)
7. ptrckjhn (27.61 wpm)
8. shiiuin (26.65 wpm)
Accuracy 96.0%
Points 13.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)