Skip to main content

A python package that simplifies using the Kuda Bank Api

Project description

PyKuda

A python package that simplifies using the Kuda Bank Api. While the Kuda Bank Api is quite easy to use, this python package makes it seamless and easy to enjoy Kuda beautiful Open Api. PyKuda uses Kuda's Api v2 two which uses an API key and Token for authentication.

Getting started

Install PyKuda

To use this package, use the package manage pip to install PyKuda.

pip install pykuda

PyKuda has some dependencies which will be installed (requests and python-dotenv). requests is used by PyKuda to make http requests to Kuda's endpoints, while the python-dotenv is responsible for getting the environmental variables which has to be set for the requests to be authenticated; more to be discussed below.

Create Environmental variables

After installation, the next thing is to create .env file where the environmental variables will be stored. Five variables are to be set in the .env file, and they are shown in an example below.

KUDA_KEY="Your Kuda Api Key"
TOKEN_URL="Kuda API v2 Get Token endpoint"
REQUEST_URL="Kuda API v2 Endpoint"
EMAIL="Your email used to register for the Kuda account"
MAIN_ACCOUNT_NUMBER="Your main Kuda account number"

NB: Please make sure you do not push your .env file to public repositories as the details here are confidential.

Use PyKuda

It is now time to use PyKuda.

from pykuda.pykuda import PyKuda

kuda = PyKuda()
response = kuda.get_bank_list()

# response contains PyKudaResponse which has the status code and data.

Understanding PyKudaResponse

Every request made using Python is filtered and a PyKudaResponse is returned, this response has two attributes, status_code and data.

Successful request

Using the response above as an example;

>>> response
>>> PyKudaResponse(status_code=200, data=[list_of_banks])

As seen above, the PyKudaResponse returns the status_code and data, the data is an already filtered data of what you should expect as a response.

Failed request

Incase the request wasn't successful, the PyKudaResponse will be different. The data will be a rRsponse Object which you can check to investigate the cause (Maybe your Token is not correct, or the URL, or something else.). Now, let's say the API Key in the .env file was not a correct one and a request was made, the code below shows the response to expect.

>>> response
>>> PyKudaResponse(status_code=401, data=<Response [401]>)
>>>
>>> respose.data.reason # 'Invalid Credentials'
>>> respose.data.reason # 'Unauthorized'

What else can PyKuda do?

PyKuda can be used to make other requests also, if you would like to learn more about how to use PyKuda to make other requests, please check the source code. Hopefully, I would be able to improve this documentation to show examples of how it can be used to make other requests. A list of request PyKuda can make are listed below.

BANK_LIST, ADMIN_CREATE_VIRTUAL_ACCOUNT, RETRIEVE_VIRTUAL_ACCOUNT_BALANCE, ADMIN_RETRIEVE_MAIN_ACCOUNT_BALANCE, FUND_VIRTUAL_ACCOUNT, WITHDRAW_VIRTUAL_ACCOUNT, NAME_ENQUIRY, SINGLE_FUND_TRANSFER, and VIRTUAL_ACCOUNT_FUND_TRANSFER.

Please refer to the Kuda's Documentation to read more about these requests.

Acknowledgement and Improvements

This project is maintained by myself, just in case you are interested in improving this package, discovered some bugs, or would like to support in any other way, please email me. Thank you.

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

pykuda-0.0.2.tar.gz (8.5 kB view details)

Uploaded Source

Built Distribution

pykuda-0.0.2-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

Details for the file pykuda-0.0.2.tar.gz.

File metadata

  • Download URL: pykuda-0.0.2.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.6

File hashes

Hashes for pykuda-0.0.2.tar.gz
Algorithm Hash digest
SHA256 3ecfefdf39c20744142fdaa02e321870019ffeb6a7d14e6cd609f65e85f61d5a
MD5 376fcc7517da64c9d25167eab554dcf4
BLAKE2b-256 33018f5f77d9c73ccae1e3a3c85971680b95970d4bb8f7e69d1d2dc51ac70d89

See more details on using hashes here.

File details

Details for the file pykuda-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: pykuda-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 7.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.6

File hashes

Hashes for pykuda-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 3384e35819e27afe2d82b26a18c4236b6af6b29324211dd9f8bbc8bc7d59a5ee
MD5 e52800c602e0aa54349f2ffec7694ce3
BLAKE2b-256 2e6245360f3b7ba4dfc1622606cdb2f19e8161ee8f70f15ab1bc3de8be016b6b

See more details on using hashes here.

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