Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Race #87

View Pit Stop page for race #87 by bladevampirekGhost race

View profile for Achromatic - youtu.be/VuzE718Ac1M (bladevampirek)

Official speed 62.78 wpm (64.61 seconds elapsed during race)
Race Start August 19, 2019 9:16:42pm UTC
Race Finish August 19, 2019 9:17:47pm UTC
Outcome No win (2 of 2)
Opponents 1. landarian (65.45 wpm)
Accuracy 98.0%
Points 38.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)