Skip to main content

Python wrapper for the Pesapal API

Project description

Pesapal Python SDK

Unofficial Python SDK for Pesapal API 3.0

Features

  • Automatic token management and refresh
  • Type-safe request models
  • Clean, intuitive API
  • Comprehensive docs
  • Good test coverage

Installation

pip install pesapal-sdk

Quickstart

from pesapal_sdk import PesapalClient
from pesapal_sdk.models import OrderRequest, BillingAddress
from decimal import Decimal

# Initialize client
client = PesapalClient(
    consumer_key="<YOUR-PESAPAL-CONSUMER-KEY>",
    consumer_secret="<YOUR-PESAPAL-CONSUMER-SECRET>",
    environment="sandbox" # or "production"
)

# Register IPN URL (one-time setup)
ipn_response = client.ipn.register("https://yoursite.com/ipn")
ipn_id = ipn_response["ipn_id"]

# Create billing address
billing = BillingAddress(
    email_address="customer@example.com",
    phone_number="0712345678",
    country_code="KE",
    first_name="Kevin",
    last_name="Kimani",
    line1="Juja, Kenya"
)

# Submit order
order = OrderRequest(
    id="order-123",
    currency="KES",
    amount=Decimal("1000.00"),
    description="Payment for services",
    callback_url="https://yoursite.com/callback",
    notification_id=ipn_id,
    billing_address=billing
)

response = client.transactions.submit_order(order)
print(f"Redirect URL: {response['redirect_url']}")

# Check transaction status
status = client.transactions.get_status(response["order_tracking_id"])
print(f"Status: {status['payment_status_description']}")

Requirements

  • Python 3.8+
  • requests

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

Disclaimer

This is an unofficial SDK and is not affiliated with or endorsed by Pesapal.

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

pesapal_sdk-0.1.3.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pesapal_sdk-0.1.3-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file pesapal_sdk-0.1.3.tar.gz.

File metadata

  • Download URL: pesapal_sdk-0.1.3.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for pesapal_sdk-0.1.3.tar.gz
Algorithm Hash digest
SHA256 ae1be072e89cb88ad0144e15c2a78c79b96891f9c65c2663586bbc13d75c7650
MD5 ef394158c087f5887bf295ad9c4fa2a9
BLAKE2b-256 6c692f52bb22abc609efb89490c53f5ecaddc8d2bd51a23661c1d990320391b6

See more details on using hashes here.

File details

Details for the file pesapal_sdk-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: pesapal_sdk-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for pesapal_sdk-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b798906270bdd6d73ff18f91af6c06f30b493c9676f29d9c35f04d36b2d9b055
MD5 21d9a4e6d02aee41cd9c15ac8071d852
BLAKE2b-256 46e689018fef3953683e301dde3131294f812a09a189a07a117a36824f6f940e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page