โญ PREMIUM EDITION
๐Ÿ Python 3.9+ Live Mode
๐Ÿ“ž Support: +256-781-880-625
๐Ÿ

Official PawaPay Python SDK

Enterprise Mobile Money integration by Katorymnd Web Solutions
๐Ÿ’ธ DEPOSIT PLAYGROUND โ€ข SANDBOX MODE
PawaPay Python SDK v2/v1
>>> DEPOSIT_TERMINAL: Ready to initiate mobile money deposits ยท Sandbox keys active ยท Simulation ready.

# Deposit API Runner

Execute live deposit requests against the PawaPay sandbox. Modify parameters in the code editor below and click โ–ถ Run Script. The SDK handles provider routing (MTN, Airtel, Orange) automatically.

run_deposit.py - Pawapay Python SDK Playground
import asyncio
from pawapay_sdk import ApiClient

# 1. Initialize Client with your Sandbox Token
config = {
    'api_token': ,# Use Your Own Sandbox Account Token
    'environment': 'sandbox',
    'api_version': # toggle v1/v2
}

client = ApiClient(config)

# 2. Set Deposit Parameters (Mobile Money)
amount =  # update as you wish
currency =  # see `SDK Config` below
payer_msisdn =  # see `Open Docs` below
provider =  # see `SDK Config` below

# 3. Execute Deposit (async)
response = await client.initiate_deposit(
    amount=amount,
    currency=currency,
    payer_msisdn=payer_msisdn,
    provider=provider
)

print(f"Deposit ID: {response.deposit_id} | Status: {response.status}")
TERMINAL // OUTPUT
$ Awaiting execution...
โšก Real provider resolution
โš™๏ธ SDK Config ๐Ÿ“˜ Open Docs
Sandbox Gateway โ€ข Live Deposit Endpoint Ready
๐Ÿ“‹ Copied to clipboard!