- Notifications
You must be signed in to change notification settings - Fork 46.7k
/
Copy pathget_ip_geolocation.py
40 lines (30 loc) · 1.25 KB
/
get_ip_geolocation.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
importrequests
# Function to get geolocation data for an IP address
defget_ip_geolocation(ip_address: str) ->str:
try:
# Construct the URL for the IP geolocation API
url=f"https://ipinfo.io/{ip_address}/json"
# Send a GET request to the API
response=requests.get(url, timeout=10)
# Check if the HTTP request was successful
response.raise_for_status()
# Parse the response as JSON
data=response.json()
# Check if city, region, and country information is available
if"city"indataand"region"indataand"country"indata:
location=f"Location: {data['city']}, {data['region']}, {data['country']}"
else:
location="Location data not found."
returnlocation
exceptrequests.exceptions.RequestExceptionase:
# Handle network-related exceptions
returnf"Request error: {e}"
exceptValueErrorase:
# Handle JSON parsing errors
returnf"JSON parsing error: {e}"
if__name__=="__main__":
# Prompt the user to enter an IP address
ip_address=input("Enter an IP address: ")
# Get the geolocation data and print it
location=get_ip_geolocation(ip_address)
print(location)