A asynchronous python library to the Mpesa Daraja API. Latest Release
This includes the following:
- A python library to accept send and receive MPESA payments in less than 10 lines of code.
- A sample implementation of the library in fast api.
$ pip install mpesasync
- 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
To get started you need the following from the Mpesa Daraja Portal
[STK PUSH]
- Your consumer key.
- Your consumer secret.
- The business shortcode.
[B2C/B2B]
- Your organisation shortcode
- Initiator name
- Security credential
- QueueTimeOutURL
- 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.
- Initialise and authenticate the STKPush sdk
from mpesasync import Mpesa, MpesaEnvironment
from mpesasync.lipa_na_mpesa import STKPush
import asyncio
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
)
coro = mpesa_app.authorize(consumer_key="YOUR CONSUMER KEY",
consumer_secret="YOUR CONSUMER SECRET")
loop = asyncio.get_event_loop()
print(loop.run_until_complete(coro))
- Send an STKPush prompt
coro = mpesa_app.stk_push(
amount=1.0, phone_number="phone number"
)
loop = asyncio.get_event_loop()
print(loop.run_until_complete(coro))
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.post("stkpush/callback")
def stk_push_callback(data: STKPushResult):
## do your zing
print(data)
return {"OK"}
Start the server
$ uvicorn main:app --reload
Use this SDK to disburse money to your customers
from mpesasync.mpesa_business.mpesa_business import *
from mpesasync.types import CommandId
import asyncio
mpesa_app = MpesaBusiness(InitiatorName="testapi",
SecurityCredential=MpesaBusiness.get_security_credential(
initiator_password="YOUR INITIATOR",
mpesa_environment=MpesaEnvironment.production
),
OrganizationShortcode="",
QueueTimeOutURL="https://mydomain.com/b2c/queue",
ResultUrl="https://mydomain.com/b2c/result",
Environment=MpesaEnvironment.production)
loop = asyncio.get_event_loop()
auth_task = mpesa_app.authorize(consumer_key="CONSUMER KEY", consumer_secret="CONSUMER SECRET")
loop.run_until_complete(auth_task)
coro = mpesa_app.business_to_customer(phoneNumber="Phone number",
amount=100,
commandId=CommandId.BusinessPayment
)
results = loop.run_until_complete(coro)
print(results)