Metadata-Version: 2.4
Name: tools402
Version: 0.1.0
Summary: Pay-per-call SDK for Agent Market (x402 / USDC on Base).
Home-page: https://tools402.dev
Author: darkbloomlabs
License: MIT
Project-URL: Homepage, https://tools402.dev
Project-URL: Documentation, https://tools402.dev/docs
Keywords: x402,usdc,base,agent,api,payment,http-402
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: web3>=6.0.0
Requires-Dist: eth-account
Requires-Dist: requests
Provides-Extra: test
Requires-Dist: pytest>=7; extra == "test"
Requires-Dist: pytest-httpserver>=1.0; extra == "test"
Dynamic: license-file

# tools402

Pay-per-call SDK for Agent Market — pay with USDC on Base, no API key, no account.

```bash
pip install tools402
```

```python
from tools402 import Client
import os

client = Client(wallet_private_key=os.environ["WALLET_KEY"])
result = client._call("/v1/ocr", files={"file": open("doc.pdf", "rb")})
print(result["text"])
```

Catalog: <https://tools402.dev>
