Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions web_programming/get_ip_geolocation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import requests


# Function to get geolocation data for an IP address
def get_ip_geolocation(ip_address):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please provide return type hint for the function: get_ip_geolocation. If the function does not return a value, please provide the type hint as: def function() -> None:

Please provide type hint for the parameter: ip_address

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)

# Parse the response as JSON
data = response.json()

# Check if city, region, and country information is available
if "city" in data and "region" in data and "country" in data:
location = f"Location: {data['city']}, {data['region']}, {data['country']}"
else:
location = "Location data not found."

return location
except Exception as e:
# Handle exceptions, such as network errors or invalid IP addresses
return str(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)