Metadata-Version: 2.4
Name: wallgent
Version: 0.2.0
Summary: Official Python SDK for the Wallgent API — financial infrastructure for AI agents
Project-URL: Homepage, https://docs.wallgent.com
Project-URL: Repository, https://github.com/cremeholdings/Wallgent
Project-URL: Documentation, https://docs.wallgent.com
Project-URL: Bug Tracker, https://github.com/cremeholdings/Wallgent/issues
License: MIT
Keywords: ai-agents,financial-infrastructure,fintech,payments,wallets,wallgent
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.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.9
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Provides-Extra: crewai
Requires-Dist: crewai>=0.30.0; extra == 'crewai'
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: respx>=0.21; extra == 'dev'
Provides-Extra: langchain
Requires-Dist: langchain-core>=0.2.0; extra == 'langchain'
Description-Content-Type: text/markdown

# wallgent

Official Python SDK for the [Wallgent](https://wallgent.com) API.

## Installation

```bash
pip install wallgent
```

## Usage

```python
from wallgent import Wallgent

client = Wallgent(api_key="your_api_key")

# Create a wallet
wallet = client.wallets.create(name="My Agent Wallet")

# Send a payment
payment = client.payments.send(
    from_wallet_id="wal_...",
    to_wallet_id="wal_...",
    amount="10.00",
)
```

## Resources

- [Documentation](https://docs.wallgent.com)
- [API Reference](https://docs.wallgent.com/docs/api-reference)
