Metadata-Version: 2.4
Name: mpp-test-sdk
Version: 1.1.0
Summary: Test pay-per-request APIs on Solana — devnet, testnet, or mainnet
Project-URL: Homepage, https://mpptestkit.com
Project-URL: Repository, https://github.com/mpptestkit/mpptestkit
License: MIT
Keywords: http402,mpp,payments,solana,testing
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: solders>=0.21.0
Provides-Extra: dev
Requires-Dist: fastapi>=0.111.0; extra == 'dev'
Requires-Dist: flask>=3.0.0; extra == 'dev'
Requires-Dist: httpx>=0.27.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest-mock>=3.14.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: respx>=0.21.0; extra == 'dev'
Provides-Extra: fastapi
Requires-Dist: fastapi>=0.111.0; extra == 'fastapi'
Requires-Dist: starlette>=0.37.0; extra == 'fastapi'
Provides-Extra: flask
Requires-Dist: flask>=3.0.0; extra == 'flask'
Description-Content-Type: text/markdown

# mpp-test-sdk (Python)

Test pay-per-request APIs on Solana — devnet, testnet, or mainnet.

## Installation

```bash
pip install mpp-test-sdk
```

## Quick start

```python
from mpp_test_sdk import create_test_client

client = await create_test_client()
res = await client.fetch("http://localhost:3001/api/data")
```
