Metadata-Version: 2.5
Name: apay
Version: 0.1.3
Summary: Universal HTTP 402 Micropayment Protocol & CLI for Autonomous AI Agents
Project-URL: Homepage, https://apay-network.vercel.app
Project-URL: Documentation, https://apay-network.vercel.app
Project-URL: Repository, https://github.com/a-pay/apay
Author-email: A-Pay Protocol Core Swarm <core@apay.network>
License: MIT
Keywords: ai-agents,autonomous-agents,base-l2,http-402,m2m-economy,micropayments,paywall,usdc
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Requires-Dist: click>=8.1.0
Requires-Dist: eth-account>=0.11.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: pydantic>=2.7.0
Requires-Dist: starlette>=0.38.0
Requires-Dist: uvicorn>=0.30.0
Description-Content-Type: text/markdown

# ⚡ A-Pay Protocol (AgentPay)
> **The Universal Micropayment & Economic Layer for Autonomous AI Agents**

[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/)
[![Status](https://img.shields.io/badge/status-active_core-success.svg)]()
[![Tests](https://img.shields.io/badge/tests-passing-brightgreen.svg)]()
[![Live Console](https://img.shields.io/badge/Console-Live_on_Vercel-success.svg)](https://apay-network.vercel.app)

---

## 🎯 Vision & Identity
**A-Pay** is an ultra-lightweight, zero-latency, open economic rail designed for the machine-to-machine (M2M) economy. Just as UPI revolutionized human digital payments in India, A-Pay enables autonomous AI software agents to discover, consume, and pay for data, compute, APIs, and micro-services on the fly—without credit cards, human KYC, or seed phrase friction.

---

## 🚀 1-Command Experience

### 1. Website / API Owners (The Sellers)
Protect ANY existing website or API with an instant HTTP 402 crypto paywall—**zero code modifications required**:
```bash
apay protect --target http://localhost:8000 --price 0.001 --wallet 0xYourWalletAddress
```
* Incoming requests from AI bots will automatically receive an **HTTP 402 Payment Required** challenge.
* Once the AI agent's cryptographic micropayment is verified (<15ms), the request is forwarded to your server and data is unlocked!

---

### 2. AI Agent Developers (The Buyers)
Give your AI agent an in-memory wallet and strict spending guardrails with **2 lines of code**:
```python
from apay import APaySession, AgentWallet

# Generate or load wallet with daily safety limit
wallet = AgentWallet(private_key="0x...", max_per_call_usdc=0.01, daily_budget_usdc=5.0)
session = APaySession(wallet)

# Automatically handles HTTP 402 challenges & settles on the fly
response = session.get("https://protected-api.com/market-data")
print(response.json())
```

---

## 📦 Directory Structure

```text
apay/
├── src/
│   └── apay/
│       ├── __init__.py      # Package exports
│       ├── cli.py           # ⚡ 1-Command CLI (`apay protect`, `apay wallet new`, `apay pay`)
│       ├── client.py        # 🤖 Auto-settling HTTP client (sync & async)
│       ├── wallet.py        # 🔐 In-memory wallet + local spending limits
│       ├── proxy.py         # 🛡️ Ultra-light reverse proxy paywall (Starlette + EIP-712)
│       ├── relayer.py       # 📊 Settlement journal & batch relayer
│       └── integrations/    # 🔗 LangChain & CrewAI agent wrappers
├── contracts/               # Base Sepolia Smart Contracts (APAYToken & APayRouter)
├── tests/                   # Automated integration & security test suite
├── spec/                    # RFC wire format & security model specifications
└── pyproject.toml           # Hatchling packaging configuration
```

---

## 🛠️ Installation & Quickstart

```bash
# 1. Install A-Pay via pip
pip install apay

# 2. Generate a new Agent Wallet with spending limits
apay wallet new

# 3. Protect any website or API with an instant HTTP 402 Paywall
apay protect --target http://localhost:8000 --price 0.001 --wallet 0xYourPayoutWalletAddress
```

---
*A-Pay is an open-source decentralized economic protocol for autonomous machine agents. Built on Base L2.*
