Skip to content

Instantly share code, notes, and snippets.

@Sulter
Last active November 7, 2020 21:40
Show Gist options
  • Save Sulter/7459117 to your computer and use it in GitHub Desktop.
Save Sulter/7459117 to your computer and use it in GitHub Desktop.
A small python script that finds gelocation of IP addresses and host names, using http://freegeoip.net/.
#!/usr/bin/env python
import sys
import urllib.request
import json
def get_info(adress):
print("************************************************")
api = "http://freegeoip.net/json/" + adress
try:
result = urllib.request.urlopen(api).read()
result = str(result)
result = result[2:len(result)-3]
result = json.loads(result)
except:
print("Could not find: ", adress)
return None
print(adress)
print("IP: ", result["ip"])
print("Country Name: ", result["country_name"])
print("Country Code: ", result["country_code"])
print("Region Name: ", result["region_name"])
print("Region Code: ", result["region_code"])
print("City: ", result["city"])
print("Zip Code: ", result["zip_code"])
print("Latitude: ", result["latitude"])
print("Longitude: ", result["longitude"])
print("Location link: " + "http://www.openstreetmap.org/#map=11/" + str(result["latitude"]) +"/" + str(result["longitude"]))
def showhelp():
print ("Usage: geoip address [address]...")
print ("find gelocation of IP addresses and host names, using http://freegeoip.net/")
if __name__ == "__main__": #code to execute if called from command-line
inputs = sys.argv
if len(inputs) < 2 or "--help" in inputs:
showhelp()
else:
for address in inputs[1:]:
get_info(address)
print("************************************************")
@drewlr
Copy link

drewlr commented Jun 7, 2020

Maybe the API results changed since, but would replace

result = urllib.request.urlopen(api).read()
result = str(result) 
result = result[2:len(result)-3]
result = json.loads(result)

with

result = urllib.request.urlopen(api).read()
json.loads(result.decode('utf-8'))

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment