Metadata-Version: 2.4
Name: ipbulucu
Version: 1.0.0
Summary: Official Python SDK for ipbulucu.org - Free IP Geolocation, Whois and Network Intelligence API
Home-page: https://ipbulucu.org
Author: ipbulucu.org
Author-email: info@ipbulucu.org
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# ipbulucu - Official Python SDK

Official Python library for querying [ipbulucu.org](https://ipbulucu.org) Network & IP Intelligence API.

## Installation
```bash
pip install ipbulucu
```

## Quick Example
```python
import ipbulucu

# 1. IP Lookup
info = ipbulucu.get_ip("81.213.153.20")
print(f"City: {info.get('city')}, ISP: {info.get('isp')}")

# 2. Whois Lookup
whois = ipbulucu.get_whois("turktelekom.com.tr")
print(f"Registrar: {whois.get('registrar')}")
```
