Metadata-Version: 2.1
Name: ltipinfo
Version: 1.6.0
Summary: Get information about a specified IP address or domain name
Home-page: https://github.com/luketainton/ltipinfo
Author: Luke Tainton
Author-email: luke@tainton.uk
License: GPLv3
Download-URL: https://pypi.org/project/ltipinfo/
Keywords: bgp,ip,ipv4,lookup,networking
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: certifi (==2020.4.5.1)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: colorama (==0.4.3)
Requires-Dist: DateTime (==4.3)
Requires-Dist: idna (==2.9)
Requires-Dist: ipaddress (==1.0.23)
Requires-Dist: pytz (==2020.1)
Requires-Dist: requests (==2.23.0)
Requires-Dist: urllib3 (==1.25.9)
Requires-Dist: zope.interface (==5.1.0)

# IP Information Lookup Tool

This Python script takes an IP address or domain name and gathers the following information:
- Location
- Timezone
- Internet Service Provider
- Autonomous System
- Advertised Prefixes

## Running the script
Here are some ways that you can run the script:
| Command                | Description                              |
| ---------------------- | ---------------------------------------- |
| `./main.py me`         | Run against your own connection          |
| `./main.py 1.1.1.1`    | Run against the IP address `1.1.1.1`     |
| `./main.py google.com` | Run against the domain name `google.com` |

## Credits
This script runs thanks to the APIs provided by [IP-API](http://ip-api.com) and [HackerTarget](https://hackertarget.com/as-ip-lookup).

