Pine Labs Online P3P Server SDK — x402 Pine Labs Online P3P server middleware (Python)
Project description
Pine Labs Online P3P Server SDK (Python)
Python SDK for Pine Labs Online P3P server integrations. It mirrors
p3p-server-sdk, creates mandates, generates HTTP 402
payment challenges, verifies client credentials, captures payments through P3P,
and builds Payment-Receipt headers.
Installation
pip install pinelabs-online-p3p-server-sdk[flask]
pip install pinelabs-online-p3p-server-sdk[fastapi]
Import module: pinelabs_p3p_server. Requires Python 3.9 or newer.
Config
from pinelabs_p3p_server import (
P3PEnvironment,
PaymentGateway,
PaymentMethod,
PineLabsOnlineServerConfig,
)
config = PineLabsOnlineServerConfig(
clientId="...",
clientSecret="...",
env=P3PEnvironment.SANDBOX,
paymentGateway=PaymentGateway.PineLabsOnline,
availablePaymentMethods=[PaymentMethod.RESERVE_PAY, PaymentMethod.Crypto],
)
clientId and clientSecret are used internally for POST /api/auth/v1/token.
The local challenge HMAC key is derived internally from clientSecret with a
stable SDK prefix, so there is no separate challenge-signing config field.
The SDK caches and refreshes bearer tokens before expiry. env selects the
Pine Labs host used for auth and /mpp/v1/* service calls.
Environment defaults:
| Env | URL | Timeout | Retries | Initial retry delay |
|---|---|---|---|---|
P3PEnvironment.SANDBOX |
https://pluraluat.v2.pinepg.in |
60000 ms | 2 | 300 ms |
P3PEnvironment.PRODUCTION |
https://api.pluralpay.in |
45000 ms | 2 | 200 ms |
Mandates
from pinelabs_p3p_server import Amount, CreateMandateOptions, PineLabsOnlineP3P
p3p = PineLabsOnlineP3P.create(config)
mandate = p3p.create_mandate(CreateMandateOptions(
mobileNumber="9876543210",
customerReference="9876543210",
amount=Amount(value=100000, currency="INR"),
paymentMethod=PaymentMethod.RESERVE_PAY,
validityInDays=20,
))
This maps to POST /mpp/v1/pre-authorize and sends
customer.mobile_number.
Paid Resource Flow
from flask import Flask, jsonify
from pinelabs_p3p_server import Amount, ChargeOptions
from pinelabs_p3p_server.flask_mw import payment_required
app = Flask(__name__)
@app.get("/api/premium")
@payment_required(config, ChargeOptions(
amount=Amount(value=50000, currency="INR"),
resource="/api/premium",
))
def premium():
return jsonify({"data": "premium content"})
The middleware reads P3P-Credential: Payment <payload>, not Authorization,
so it does not conflict with application bearer auth.
Capture
from pinelabs_p3p_server import CaptureOptions
result = p3p.capture(CaptureOptions(
token="MPP_TOK_123",
amount=Amount(value=50000, currency="INR"),
paymentMethod=PaymentMethod.RESERVE_PAY,
customerReference="9876543210",
mobileNumber="9876543210",
challengeId="ch_123",
merchantOrderReference="order-123",
))
The debit body uses customer.mobile_number, payment_amount,
payment_token, and challenge_id. The SDK sends Idempotency-Key and does
not send Merchant-ID.
If /mpp/v1/debit returns 202 Accepted, the SDK treats that as an
accepted-but-processing debit:
- retries the same debit with the same
Idempotency-Key - respects
Retry-Afterwhen Pine Labs returns it - falls back to
initialRetryDelayMsotherwise - counts those pending retries against
maxRetries
If pending retries are exhausted and the debit is still non-terminal, the SDK
returns a pending result and the middleware should return 202 without serving
the protected resource.
Generic Middleware Helper
from pinelabs_p3p_server.server.middleware import decide_payment
decision = decide_payment(
credential_header=request.headers.get("P3P-Credential"),
config=config,
charge_options=ChargeOptions(
amount=Amount(value=50000, currency="INR"),
resource="/api/premium-data",
),
)
To reconcile a pending debit later, use the status lookup helper:
latest = p3p.get_debit_status("idem_key_123")
This calls GET /mpp/v1/debit/{id} and returns the same debit payload family
as the original debit call, so application code can resolve pending payments by
idempotency key.
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
File details
Details for the file pinelabs_online_p3p_server_sdk-0.2.0.tar.gz.
File metadata
- Download URL: pinelabs_online_p3p_server_sdk-0.2.0.tar.gz
- Upload date:
- Size: 30.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7cd5481473804687b391e092138b251381f7fec16f5eb0aaa921fd4bc2fc103
|
|
| MD5 |
b9028eb993ce07f55dfbe70672e23bd4
|
|
| BLAKE2b-256 |
b529466a2a29f6a124acdd5b45f1dc82f6de94c3100e308e0705466d92388f81
|
File details
Details for the file pinelabs_online_p3p_server_sdk-0.2.0-py3-none-any.whl.
File metadata
- Download URL: pinelabs_online_p3p_server_sdk-0.2.0-py3-none-any.whl
- Upload date:
- Size: 35.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f990e5da542b03fe66a59324931dec5510366bf6566703e60108c8a0d4468b43
|
|
| MD5 |
684e193691f650a87af324345ebaa516
|
|
| BLAKE2b-256 |
b2afbde4667be587284328a08e125e44cdb28bf5c45a506d8837797d42099d72
|