Taiwan is a country (17lingh1)

Race #10

View Pit Stop page for race #10 by 17lingh1Ghost race

View profile for Taiwan is a country (17lingh1)

Official speed 29.90 wpm (139.26 seconds elapsed during race)
Race Start November 27, 2021 2:46:45pm UTC
Race Finish November 27, 2021 2:49:05pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 18.44
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)