Skip to main content

A Mpesa Daraja API library to quickly get started sending and receiving money from mpesa

Project description

Mpesasync

A asynchronous python library to the Mpesa Daraja API. Latest Release

Features

This includes the following:

  1. A python library to accept send and receive MPESA payments in less than 10 lines of code.
  2. A sample implementation of the library in fast api.

Installation

$ pip install mpesasync

Development

  • Create a virtual environment python -m venv venv
  • Activate your virtual environment $source venv\bin\activate or in windows > venv\scripts\activate
  • Install Poetry pip install poetry
  • Install project poetry install
  • Run tests pytest

Getting started

To get started you need the following from the Mpesa Daraja Portal

[STK PUSH]

  1. Your consumer key.
  2. Your consumer secret.
  3. The business shortcode.

[B2C/B2B]

  1. Your organisation shortcode
  2. Initiator name
  3. Security credential
  4. QueueTimeOutURL
  5. Result url => This has to be a publicly accessible callback that mpesa will send transaction results to.

For testing purposes, you can get test credentials here. On the sandbox portal, create an new app and use the provided credentials.

Using the library

STK Push

  1. Initialise and authenticate the STKPush sdk
from mpesasync import Mpesa, MpesaEnvironment
from mpesasync.lipa_na_mpesa import STKPush
mpesa_app = STKPush(
        Environment=MpesaEnvironment.production, # use sandbox to authenticate with sandbox credentials
        BusinessShortCode=1234, 
        CallBackURL="https://mydomain.com/path",
        PassKey="" # use the passkey obtained from the daraja portal
    )
await mpesa_app.authorize(consumer_key="YOUR CONSUMER KEY",
                              consumer_secret="YOUR CONSUMER SECRET")
  1. Send an STKPush prompt
await mpesa_app.stk_push(
        amount=1.0, phone_number="phone number"
    )

The phone number can be any of +254XXXXXXXXX, 254XXXXXXXXX, 0XXXXXXXXX, the SDK will sanitise the phone numbers for you.

If the transaction is sucessfull, mpesa will send a confirmation to your configured callback url. You can also use the library to parse the json data. A callback implemented in FastAPI could look like.

## main.py

from mpesasync.contracts import STKPushResult

from typing import Optional

from fastapi import FastAPI

app = FastAPI()

@app.get("stkpush/callback")
def stk_push_callback(data: STKPushResult):
    ## do your zing
    print(data)
    return {"OK"}

Start the server

$ uvicorn main:app --reload

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

mpesasync-0.1.1.tar.gz (13.8 kB view details)

Uploaded Source

Built Distribution

mpesasync-0.1.1-py3-none-any.whl (14.7 kB view details)

Uploaded Python 3

File details

Details for the file mpesasync-0.1.1.tar.gz.

File metadata

  • Download URL: mpesasync-0.1.1.tar.gz
  • Upload date:
  • Size: 13.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.9.0 Windows/10

File hashes

Hashes for mpesasync-0.1.1.tar.gz
Algorithm Hash digest
SHA256 26e845ba6b3cbf34dfc593904ba7abfe76b37b284a71854069d7bede84c15728
MD5 46361f683c6ba205827b252b6ae1c3e7
BLAKE2b-256 d653c2ec870f70eeade289d32d215274b540f140c342d31c0b91a130e279ca27

See more details on using hashes here.

Provenance

File details

Details for the file mpesasync-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: mpesasync-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.9.0 Windows/10

File hashes

Hashes for mpesasync-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d29de0d04eafb34ad464a7414fca474b14c8616cdd4775885fa6dd2c16c0b483
MD5 0cd3343addb9cc1a484cc6222e054a61
BLAKE2b-256 df358e4da5125cd6c0f6332042811dcf5897b6b009f4ce8ba31a4575c0f3e505

See more details on using hashes here.

Provenance

Supported by

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