Home
Softono
kkiapay-python

kkiapay-python

Open source Python
16
Stars
10
Forks
2
Issues
2
Watchers
3 years
Last Commit

About kkiapay-python

πŸ’° 🐍 πŸ‡§πŸ‡― Community-driven Admin KkiaPay Sdk for Python

Platforms

Web Self-hosted

Languages

Python

Links

kkiapay-python

Introduction

Community-driven admin KkiaPay Sdk for Python.

Installation

To get the latest version of KkiaPay Sdk for Python , simply run:

pip install kkiapay

Usage

Behold, the power of kkiapay-python:

Verify a transaction

from kkiapay import Kkiapay

k = Kkiapay('public_key', 'private_key', 'secret', sandbox=True)

transaction = k.verify_transaction('LVFNrK1nx')

print(transaction)
# => {
#    "performed_at":"2023-02-20T17:44:47.842Z",
#    "received_at":1676915100302,
#    "type":"DEBIT",
#    "status":"SUCCESS",
#    "source":"MOBILE_MONEY",
#    "source_common_name":"mtn-benin",
#    "amount":100,
#    "fees":2,
#    "net":0,
#    "externalTransactionId":"test",
#    "transactionId":"123",
#    ...
# }

Refund a transaction

from kkiapay import Kkiapay

k = Kkiapay('public_key', 'private_key', 'secret', sandbox=True)

transaction = k.refund_transaction('LVFNrK1nx')

print(transaction)
# => {
#    "code":"SUCCESS",
#    "description":"REVERTED",
#    "transactionId":"123"
# }

Schedule Payout

Schedule payout API is deprecated and no longer supported as of Feb 20th, 2023 from the API and can be done only on the dashboard until further notice.

Contributing

Check our contribution guide.

License

kkiapay-python is open-sourced software licensed under the MIT license.