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.5.tar.gz (9.2 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.5-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pesapal_sdk-0.1.5.tar.gz
  • Upload date:
  • Size: 9.2 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.5.tar.gz
Algorithm Hash digest
SHA256 3c4a79376f14133c100814efc4b172bf3e609fecaf4a38f47b3166a59f68b415
MD5 9e70ceeb907d2f64f296b941feefa6a8
BLAKE2b-256 08575110b5516d153e423e7767a015a6c7fb0f36557a21bec472eba9a2e197c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pesapal_sdk-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 10.4 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.5-py3-none-any.whl
Algorithm Hash digest
SHA256 49ae1da8f284504941f1af7cfa6c1c4ac5dc6f29aecbd6745a7e8981f750202b
MD5 e64d326b21d744338c6bd8c838872d09
BLAKE2b-256 938d649a0b6c834bc712470b031d4b7afe3ded8fe9a30feb84fb1e8fe3622720

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