Race Result Details |
Racer | Yarot Sanabria Lauta (yarot) |
Race Number | 7 |
Date | Fri, 30 May 2025 1:37:14 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 91.2% |
Rank | 12th place (out of 17) |
Opponents | alex_ramos (6th place) alexbeltrantarqui (2nd place) ariane_salazar (8th place) erick_vargas (5th place) jas_el (1st place) liz_mariela_perez (4th place) maria_ortega10 (3rd place) pedro_serrudo (10th place) samiraarancibia123426 (7th place) sharick_chungara (9th place) tocsky (11th 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)
|