Payment Library For Most Public Payment API's in Kenya and hopefully Africa.
- Mpesa
- Mpesa Express (STK)
- Transaction Status
- Mpesa
- STK Transaction Validation
- B2C
- B2B
- C2B
- Reversal
- Account Balance
- JengaWS(Equity)
- Send Money
- Send Money Queries
- Receive Money
- Receive Money Queries
- Buy Goods, Pay Bills, Get Airtime
- Airtime
- Reg Tech: KYC, AML, & CDD API
- Account Services
- Forex Rates
- Paypal
- Card
- iPay
pip install shopyangu-payments
- Python 3.6+
- Django 2.2.9+
- djangorestframework 3.12.2
- requests 2.25.1+
- python-decouple 3.3+
Add the following in the urls.py
urlpatterns = [
...
path('payments/', include('shopyangu_payments.urls', 'shopyangu_payments')),
...
]
Add the following to installed apps
INSTALLED_APPS = [
...
'shopyangu-payments',
...