Race Result Details |
Racer | Alvaro Moyata (tocsky) |
Race Number | 67 |
Date | Thu, 3 Jul 2025 2:32:17 |
Universe | code |
Speed |
26 WPM
![]() |
Accuracy | 94.5% |
Rank | 8th place (out of 11) |
Opponents | alex_ramos (9th place) ariane_salazar (4th place) beltran_tarqui (1st place) erick_vargas (7th place) maria_ortega10 (3rd place) nessa2 (11th place) pedro_serrudo (10th place) samiraarancibia123426 (5th place) sharick_chungara (6th place) |
Text typed:
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)
— (other)
by www.pythonforbeginners.com/
(see stats)
|