Metadata-Version: 2.4
Name: aipp-python
Version: 0.1.0
Summary: AIPP (AI Payment Protocol) Python SDK
Project-URL: Homepage, https://github.com/aippcore/aipp-python
Project-URL: Repository, https://github.com/aippcore/aipp-python.git
Author-email: AIPP Core <aippcore@gmail.com>
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Requires-Dist: httpx>=0.24.0
Requires-Dist: pydantic>=2.0.0
Description-Content-Type: text/markdown

# AIPP Python SDK

Agent-Native Lightning Payment Infrastructure.

## Installation

```bash
pip install aipp
```

## Usage

```python
from aipp import AIPP

# Production
client = AIPP(api_key="aipp_live_secret_xxx", base_url="https://agentic.aipp.dev")

balance = client.balance()         # Kalan credit
client.charge(amount=10)           # 10 credit harca
client.charge_with_idempotency(amount=10, idempotency_key="unique-123")  # Güvenli harcama
history = client.history(limit=20) # Son işlemler
```
