Metadata-Version: 2.4
Name: dargslan-ip-geo
Version: 1.0.0
Summary: IP geolocation and WHOIS lookup tool — find country, ISP, abuse contact, and network info for any IP address
Author-email: Dargslan <info@dargslan.com>
License: MIT
Project-URL: Homepage, https://dargslan.com
Project-URL: Documentation, https://dargslan.com/blog
Project-URL: Repository, https://github.com/Dargslan
Project-URL: Free Cheat Sheets, https://dargslan.com/cheat-sheets
Project-URL: Linux & DevOps Books, https://dargslan.com/books
Keywords: ip,geolocation,whois,network,security,linux,sysadmin,devops
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Networking
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# dargslan-ip-geo

**IP Geolocation & WHOIS Lookup** — Find country, ISP, abuse contact, and network info for any IP address. Reverse DNS, bulk lookups. Zero external dependencies.

[![PyPI version](https://img.shields.io/pypi/v/dargslan-ip-geo)](https://pypi.org/project/dargslan-ip-geo/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Installation

```bash
pip install dargslan-ip-geo
```

## CLI Usage

```bash
dargslan-ip 8.8.8.8           # Full geolocation report
dargslan-ip 8.8.8.8 --whois   # Include WHOIS data
dargslan-ip 8.8.8.8 --reverse # Reverse DNS only
dargslan-ip 8.8.8.8 --json    # JSON output
dargslan-ip 1.1.1.1 8.8.8.8   # Multiple IPs
```

## Python API

```python
from dargslan_ip_geo import IPGeo
ig = IPGeo()
info = ig.lookup("8.8.8.8")
whois = ig.whois("8.8.8.8")
ig.print_report("8.8.8.8")
```

## More from Dargslan

- [Dargslan.com](https://dargslan.com) — Linux & DevOps eBook Store
- [Free Cheat Sheets](https://dargslan.com/cheat-sheets)
- [Blog & Tutorials](https://dargslan.com/blog)

## License

MIT — see [LICENSE](LICENSE)
