Race Result Details |
Racer | Maria Betzabe Ortega Soto (maria_ortega10) |
Race Number | 68 |
Date | Fri, 30 May 2025 1:36:40 |
Universe | code |
Speed |
30 WPM
![]() |
Accuracy | 93% |
Rank | 3rd 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) pedro_serrudo (10th place) samiraarancibia123426 (7th place) sharick_chungara (9th place) tocsky (11th place) yarot (12th 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)
|