⭐ PREMIUM EDITION
🐍 Python 3.9+ Live Mode
πŸ“ž Support: +256-781-880-625
🐍

Official PawaPay Python SDK

Enterprise Mobile Money integration by Katorymnd Web Solutions
βš™οΈ CONFIG & NETWORK PLAYGROUND
PawaPay Python SDK v2/v1 System Intelligence
>>> SYSTEM_TERMINAL: Live query of active merchant configurations and MNO (Mobile Network Operator) statuses.

# Network Inspector

Fetch your approved currencies, limits, and the real-time operational status of Telecoms directly from the PawaPay network.

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

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

# 2. Fetch Active Conf & Availability (async)
if config['api_version'] == 'v2':
    active_conf = await client.check_active_conf_v2()
    availability = await client.check_mno_availability_v2()
else:
    active_conf = await client.check_active_conf()
    availability = await client.check_mno_availability()

print(active_conf, availability)
TERMINAL // OUTPUT
$ Awaiting network query...
πŸ“‘ Live Gateway Check
πŸ—ΊοΈ Dynamic Territory Maps
🚦 Real-time Network Status
Sandbox Gateway β€’ Live Config state Ready