Race Result Details |
Racer | alexVladimirQuecaña (alex_ramos) |
Race Number | 55 |
Date | Fri, 30 May 2025 1:36:49 |
Universe | code |
Speed |
28 WPM
![]() |
Accuracy | 99.1% |
Rank | 6th place (out of 17) |
Opponents | 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) 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)
|