Welcome aboard! We are happy you are here and wish you good net-raft!
import requests
city = requests.get('http://ipinfo.io')
data = json.loads(city.text)
print (data['city'])
// import json is needed yet
import requests
import json
city = requests.get('http://ipinfo.io')
data = json.loads(city.text)
print (data['city'])
The most helpful PYTHON solutions
how to get client ip address using python ?PYTHON
Click to see more ...
542
38
get client city, region, country pythonPYTHON
Click to see more ...
437
23
get latitude and longitude from ip address pythonPYTHON
Click to see more ...
459
21
get ip address pythonPYTHON
Click to see more ...
393
12
get computer name pythonPYTHON
Click to see more ...
1.2K
8
get latitude longitude pythonPYTHON
Click to see more ...
316
7
create array using pythonPYTHON
Click to see more ...
482
7
get client hostname pythonPYTHON
Click to see more ...
352
4
get client country pythonPYTHON
Click to see more ...
382
3
get client region pythonPYTHON
Click to see more ...
320
3