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 ...
488
38
get client city, region, country pythonPYTHON
Click to see more ...
383
23
get latitude and longitude from ip address pythonPYTHON
Click to see more ...
398
21
get ip address pythonPYTHON
Click to see more ...
341
12
get computer name pythonPYTHON
Click to see more ...
1.1K
8
get latitude longitude pythonPYTHON
Click to see more ...
268
7
create array using pythonPYTHON
Click to see more ...
435
7
get client hostname pythonPYTHON
Click to see more ...
289
4
get client country pythonPYTHON
Click to see more ...
309
3
get client region pythonPYTHON
Click to see more ...
267
3