Race Result Details |
Racer | Fátima (nessa2) |
Race Number | 59 |
Date | Thu, 3 Jul 2025 2:32:33 |
Universe | code |
Speed |
24 WPM
![]() |
Accuracy | 93% |
Rank | 11th 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) pedro_serrudo (10th place) samiraarancibia123426 (5th place) sharick_chungara (6th place) tocsky (8th 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)
|