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.4.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.4-py3-none-any.whl (10.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: pesapal_sdk-0.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 15897c906d517cd7d57a72af81f8b1a32c0d87bad78b32fef06610c323b097af
MD5 31f540dd603c9bedb5d9aed31153982c
BLAKE2b-256 d169bd6a12a0ff8eb6b7e2e179fdfd0d74779cf70bc0acfc1d250f2c709ad568

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pesapal_sdk-0.1.4-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.4-py3-none-any.whl
Algorithm Hash digest
SHA256 75461f1f3f0253809188e3d55f1414c4975d3052a4968f0b5fea5f0f58b69cb7
MD5 b241ac417bf224561c4cf258368ce10a
BLAKE2b-256 4366b2d1efedb55291cb0a3ee368c89b5508c5a6cc3358b019bad97eef58b10d

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