Python Pesa SDK
This package is available in Python Package Index and can be installed using pip
pip install pypesa
The package comprise both original open API codes and refactored codes.
To use original open API code import open_api
module
from pypesa.open_api import APIContext, APIMethodType, APIRequest
To use refactored code import MPESA
from vodacom
module.
from pypesa.vodacom import MPESA
- Customer to Business (C2B)
- Business to Customer (B2C)
- Business to Business (B2B)
- Payment Reversal
- Transaction Status
- Direct debit creation and Payment
The following are required and are obtained from Vodacom Open Api portal
- Api Key
- Public Key
See more in documentation.
# vodacom M-PESA
from pypesa.vodacom import MPESA
api_key = '<your-api-key>'
public_key = '<open-api-public-key>'
m_pesa = MPESA(api_key=api_key, public_key=public_key)
# Customer to Business payment
parameters = {
'input_Amount': '1000', # amount to be charged
'input_Country': 'TZN',
'input_Currency': 'TZS',
'input_CustomerMSISDN': '000000000001',
'input_ServiceProviderCode': '000000',
'input_ThirdPartyConversationID': 'c9e794e10c63479992a8b08703abeea36',
'input_TransactionReference': 'T23434ZE3',
'input_PurchasedItemsDesc': 'Shoes',
}
response = m_pesa.customer2business(parameters)
Check more examples of methods and responses in docs
Code released under MIT LICENSE