/IP_Address_Information_Tool

Simple python script to view information about any IPv4 or IPv6 public IP address

Primary LanguagePythonMIT LicenseMIT

IP Address Information Tool (IPAIT)

Simple python script to view information about any IPv4 or IPv6 public IP address

This is the IP Address Information Tool (IPAIT). You need Python 3 and an Internet connection to run this tool. You can find information about any IPv4 or IPv6 Public IP Address. This tool can extract the following information.

  1. Country
  2. Location
  3. ASN/Organization
  4. Time Zone

Additionally, you can also obtain the following details by adding suitable lines into the ipait.py. (You can add additional lines after 87th line.)

  1. Hostname -
print ("Hostname: " + js["hostname"]);
  1. City -
print ("City: " + js["city"]);
  1. Region -
print ("Region: " + js["region"]);
  1. Postal -
print ("Postal: " + js["postal"]);

My blog post about this: IP Address Information Tool (IPAIT)