HTTP 402 Payment Authentication for Python
Project description
pympp
Python SDK for the Machine Payments Protocol
Documentation
Full documentation, API reference, and guides are available at machinepayments.dev/sdk/python.
Install
pip install pympp
Quick Start
Server
from mpp import Credential, Receipt
from mpp.server import Mpp
from mpp.methods.tempo import tempo, ChargeIntent
server = Mpp.create(
method=tempo(
intents={"charge": ChargeIntent()},
currency="0x20c0000000000000000000000000000000000000",
recipient="0x742d35Cc6634c0532925a3b844bC9e7595F8fE00",
),
)
@app.get("/paid")
@server.pay(amount="0.50")
async def handler(request, credential: Credential, receipt: Receipt):
return {"data": "...", "payer": credential.source}
Client
from mpp.client import Client
from mpp.methods.tempo import tempo, TempoAccount, ChargeIntent
account = TempoAccount.from_key("0x...")
async with Client(methods=[tempo(account=account, intents={"charge": ChargeIntent()})]) as client:
response = await client.get("https://api.example.com/resource")
Examples
| Example | Description |
|---|---|
| api-server | Payment-gated API server |
| fetch | CLI tool for fetching URLs with automatic payment handling |
| mcp-server | MCP server with payment-protected tools |
Protocol
Built on the "Payment" HTTP Authentication Scheme. See mpp-specs for the full specification.
License
MIT OR Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pympp-0.1.3.tar.gz
(68.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
pympp-0.1.3-py3-none-any.whl
(55.2 kB
view details)
File details
Details for the file pympp-0.1.3.tar.gz.
File metadata
- Download URL: pympp-0.1.3.tar.gz
- Upload date:
- Size: 68.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24df0d7968fbc2c5d97f0f28b4de059885036e2b4ee770d34cc6d42ac1dd51f1
|
|
| MD5 |
bcaa7fac933d3c28a91edb0741b83a60
|
|
| BLAKE2b-256 |
10101f9850dac5a04d236421fddc0bd32a50fd86377643e548ededc426e05d46
|
File details
Details for the file pympp-0.1.3-py3-none-any.whl.
File metadata
- Download URL: pympp-0.1.3-py3-none-any.whl
- Upload date:
- Size: 55.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85dd52a2bf7f7768ee8909cea162f74711be0dc20145626e94dc7b5c3b397bec
|
|
| MD5 |
0f855bc8a0cec5d6c78492cbaee6f8fc
|
|
| BLAKE2b-256 |
442069a2a3e1cbaceaed3714b1a042d11709d4c0403d0f0b21b1f1a196616268
|