Metadata-Version: 2.4
Name: proxyhubb
Version: 0.1.0
Summary: Official Python SDK for the ProxyHubb Bulk Proxy Pool API
Author: ProxyHubb
License: MIT
Project-URL: Homepage, https://proxyhubb.com
Project-URL: Repository, https://github.com/proxyhubb/proxyhubb
Project-URL: Issues, https://github.com/proxyhubb/proxyhubb/issues
Keywords: proxyhubb,proxy,sdk,api
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0
Requires-Dist: urllib3>=2.0.0
Dynamic: license-file

# proxyhubb

Official Python client for the ProxyHubb Bulk Proxy Pool API.

## Install

```bash
pip install proxyhubb
```

## Usage

```python
from proxyhubb import ProxyHubClient

client = ProxyHubClient("phub_...")  # default: https://api.proxyhubb.com
pool = client.create_pool("scrapers", size=5)
proxies = client.as_requests_proxy(pool["id"])
```

Create an API key in the dashboard (`phub_…`).

Gateway helper (optional):

```python
from proxyhubb import ProxyClient

gw = ProxyClient(proxy_auth="user:pass")
resp = gw.request("GET", "https://api.ipify.org")
```

## License

MIT
