Skip to main content

A modern, async Python package for integrating Tanzanian Mobile Network Operators and Gateways (M-Pesa, Selcom, Safaricom Daraja).

Project description

LIPA-PY

Empowering Seamless Payments Across East Africa

last commit python 100% languages 1

Built with the tools and technologies:

Markdown TOML FastAPI Python GitHub Actions uv Pydantic


Table of Contents


Overview

lipa-py is a modern, asynchronous Python library that simplifies integrating East African mobile money services such as M-Pesa, Selcom, Safaricom Daraja, TIPS, Airtel Money, and Tigo Pesa. It provides a unified, type-safe interface for payment processing, webhook handling, and secure transaction management.

Why lipa-py?

This project aims to streamline mobile money integrations, enabling developers to build scalable, reliable payment solutions within the broader financial ecosystem. The core features include:

  • Unified API for multiple mobile money providers, abstracting provider-specific details.
  • Asynchronous webhooks with background processing for real-time notifications.
  • Cryptographic functions ensuring secure communication and request integrity.
  • Strong type safety with schemas and static analysis support.
  • Automated CI workflows to maintain code quality and stability.

Getting Started

Prerequisites

This project requires the following dependencies:

  • Programming Language: Python
  • Package Manager: uv

Installation

Build lipa-py from the source and install dependencies:

  1. Clone the repository:

    git clone https://github.com/PatzPaul/lipa-py.git
    
  2. Navigate to the project directory:

    cd lipa-py
    
  3. Install the dependencies:

    Using uv:

    uv sync --all-extras --dev
    

Usage

Run the project with:

Using uv:

1. The Unified Payment Interface (Recommended)

This is the fastest way to accept payments without caring about the underlying MNO.

import asyncio
from lipa_py import UnifiedPaymentClient, UnifiedPaymentRequest

async def accept_payment():
    # 1. Define your active gateways
    client = UnifiedPaymentClient({
        "mpesa": {
            "api_key": "example_vodacom_api_key",
            "public_key": "example_vodacom_public_key_pem",
            "environment": "sandbox"
        },
        "selcom": {
            "vendor_id": "example_SELCOM_VENDOR",
            "api_key": "example_selcom_key",
            "api_secret": "example_selcom_secret",
            "environment": "sandbox"
        },
        "safaricom": {
            "consumer_key": "example_safaricom_key",
            "consumer_secret": "example_safaricom_secret",
            "passkey": "example_passkey",
            "shortcode": "174379",
            "callback_url": "https://yourdomain.com/payments/safaricom/webhook",
            "environment": "sandbox"
        },
        "tigo_pesa": {
            "client_id": "example_tigo_client_id",
            "client_secret": "example_tigo_secret",
            "biller_code": "example_BILLER_CODE",
            "environment": "sandbox"
        },
        "airtel_money": {
            "client_id": "example_airtel_id",
            "client_secret": "example_airtel_secret",
            "environment": "sandbox"
        },
        "tips": {
            "api_key": "example_tips_token",
            "institution_id": "example_INSTITUTION",
            "environment": "sandbox"
        }
    })

    # 2. Provide the customer details.
    # lipa-py automatically detects the prefixes!
    # 075x -> M-Pesa 
    # 071x -> Tigo Pesa
    # 078x -> Airtel Money
    # 2547x -> Safaricom Daraja
    # If the number is unrecognized, it falls back to Gateway aggregators (Selcom, TIPS)
    request = UnifiedPaymentRequest(
        phone_number="255716000000",
        amount=1000.0,
        reference="TICKET-123",
        email="customer@example.com" 
    )

    response = await client.request_payment(request)
    print(f"Payment via {response.provider} initialized. Trx ID: {response.transaction_id}")
    
    # Clean up graceful
    await client.close()

if __name__ == "__main__":
    asyncio.run(accept_payment())

2. Using Specific MNO Clients Directly

All clients are importable from the top-level package. No need for sub-module paths.

import asyncio
from lipa_py import MPesaClient, STKPushRequest, MpesaError

async def mpesa_only():
    # service_provider_code defaults to "000000" (sandbox); set your real code in production
    async with MPesaClient(api_key="...", public_key="...", service_provider_code="123456") as mpesa:
        req = STKPushRequest(
            phone_number="255754000000",
            amount=5000,
            reference="TICKET-456",
            third_party_conversation_id="ABC-123"
        )
        res = await mpesa.stk_push(req)
        print(f"STK Push Sent: {res.output_ConversationID}")

asyncio.run(mpesa_only())

3. Error Handling

Each provider has a typed exception class. Catch them specifically or together:

from lipa_py import MpesaError, AirtelError, SafaricomError, TigoError, TIPSError, SelcomError

try:
    response = await client.request_payment(request)
except MpesaError as e:
    print(f"M-Pesa failed: {e}")
except AirtelError as e:
    print(f"Airtel failed: {e}")
except ValueError as e:
    # Raised when no provider is configured for the given phone number
    print(f"Routing error: {e}")

4. FastAPI Webhook Integration

Handling asynchronous webhooks correctly is difficult due to MNO timeouts. We provide native FastAPI routers that handle the required response codes instantly while delegating your logic to the background.

from fastapi import FastAPI
from lipa_py import mpesa_router, set_webhook_handler, MpesaWebhookData

app = FastAPI()

# 1. Write the logic you want to execute when a payment completes
async def handle_successful_payment(data: MpesaWebhookData):
    # This runs safely in a BackgroundTask!
    if data.input_ResultCode == "0": # 0 typically means success in M-Pesa
        print(f"Payment of {data.input_TransactionID} succeeded!")
        # -> UPDATE YOUR DATABASE HERE <-

# 2. Register your handler
set_webhook_handler(handle_successful_payment)

# 3. Mount the pre-built router
app.include_router(mpesa_router, prefix="/payments/mpesa")

Your webhook is now live at POST /payments/mpesa/webhook.

5. Typed Configuration (Optional)

For IDE autocompletion and validation at config time, use the typed config models instead of plain dicts:

from lipa_py import UnifiedPaymentClient, MpesaConfig, SafaricomConfig

client = UnifiedPaymentClient({
    "mpesa": MpesaConfig(
        api_key="...",
        public_key="...",
        service_provider_code="123456",
        environment="live",
        timeout=30.0,
    ),
    "safaricom": SafaricomConfig(
        consumer_key="...",
        consumer_secret="...",
        passkey="...",
        shortcode="174379",
        callback_url="https://yourdomain.com/payments/safaricom/webhook",
        environment="live",
    ),
})

Plain dicts still work — both styles are accepted.

Testing & Requirements

Because lipa-py interacts with strict MNOs and Gateways, there are some hard requirements before you can successfully make a test API call:

1. Vodacom M-Pesa Requirements

To use the M-Pesa client, you cannot just use dummy strings. You must have:

  • API Key: Available from the Vodacom M-Pesa Developer Portal.
  • Public Key (PEM Format): Vodacom requires your requests to be RSA encrypted using their specific Certificate. You must download this .pem file from the Developer Portal, open it, and pass its contents into the public_key field. Without this, the crypto.py module will throw an error.

2. Tigo Pesa Requirements

To use the Tigo Pesa integration:

  • Client ID & Client Secret: Obtained from the Tigo Pesa Developer Portal after registering an application.
  • Biller Code: A unique identifier for your business on the Tigo Pesa network.

3. Airtel Money Requirements

To use the Airtel Money integration:

  • Client ID & Client Secret: Provided by Airtel Money when you create an integration application on their portal.

4. Safaricom (Kenya) Requirements

To use the Safaricom Daraja STK Push integration:

  • Consumer Key & Secret: Generated by creating an App on the Safaricom Daraja Portal. (Ensure your Sandbox App has the M-Pesa Express scope checked!).
  • Passkey & Shortcode: The Sandbox provides default values for these. For production, these are provided to you by Safaricom when you Go Live.

5. Selcom Gateway Requirements

To use the Selcom integration:

  • Vendor ID: Your registered Selcom Vendor/Till number.
  • API Key & API Secret: Provided by Selcom upon account registration. Selcom uses this to validate the HMAC-SHA256 signature generated by lipa-py on every request.

6. TIPS Gateway Requirements

To use the TIPS integration:

  • API Key: A token provided by TIPS for authenticating requests.
  • Institution ID: Your registered institution identifier within the TIPS network.

If you try to run the quickstart using fake keys, the initial Pydantic schema validation will succeed, but the subsequent asynchronous httpx call to the Sandbox/Live URL will be rejected by the Gateway with an Authentication Error HTTP Status Code.

Contributing

We want to make lipa-py the definitive standard for Tanzanian and East African payments in Python. Pull Requests are always welcome for:

  • Improving test suites and coverage
  • Incorporating missing Gateways / Aggregators (e.g. DPO, Pesapal)
  • Real-world production edge case fixes

Sponsors

Support lipa-py and get your logo here!

License

MIT License

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

lipa_py-0.1.4.tar.gz (16.7 kB view details)

Uploaded Source

Built Distribution

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

lipa_py-0.1.4-py3-none-any.whl (31.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lipa_py-0.1.4.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for lipa_py-0.1.4.tar.gz
Algorithm Hash digest
SHA256 ddc7487bd50a1d6349f7907fe9a3e1fca7839e7abb7c2de0b172e2a3c6e6376b
MD5 436b2cb26e8cf891c3088714e9083968
BLAKE2b-256 d953bf7b9be35e0e1663751e5e77e7a0880756f13e79e018ef2bcfebeac76c12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lipa_py-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 31.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for lipa_py-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 3cce3fc0f6b6c7a62394cfddc1532ae43148ccd07cf96b9ecf9a98041dc18144
MD5 968bbd1753a377117662ce91054d5192
BLAKE2b-256 6e5aca7ed63317db900a3c561a8a279fe808e2585a0a51e9750b33b8191e79e0

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