Python wrapper for making secure requests to Kuda API
Project description
kudapy
Python wrapper for making secure requests to Kuda API
Getting started
- register on kuda bank website to recieve public and private keys in xml format
- paste your private and public keys (both in PEM format) in your project directory - both keys come in XML format(YOU NEED TO CONVERT FROM XML TO PEM)
- Your client key is the name of your private key file sent after registration on kuda bank website.
Installation
pip install kudapy
Making a request
from kudapy import kuda
"""
Save your public and private pem file somewhere on the filesystem. Specify the full path to your keys
then create a Kuda Object instance. Also provide a client key string and base url (for production).
"""
kuda_instance = Kuda(path_to_public_key, path_to_private_key, client_key_string, base_url)
#Use the kuda instance to call the appropiate methods of the
#action you want to perform.
#For available actions run help(kuda)
Sample requests
# List of banks
kuda_instance.bank_list()
-------------------------
# Name enquiry
kuda_instance.name_enquiry("1100000734", "999129")
-------------------------
# Create a virtual account
# (Provide email, phone, lastname, firstname)
kuda_instance.create_virtual_account(
"okonkwo_yusuf@kudabank.com",
"07011111111",
"Okonkwo",
"Yusuf"
)
--------------
## Expected response is decrypted data from Kuda API in JSON
"""
You get back two values from the method calls, status and data. If status is true, there is a valid response data else
the status will be False - with data being the error message.
"""
status, data = kuda_instance.bank_list()
(True, {'Status': True, 'Message': 'Completed Successfully', ...})
or
status, data = kuda_instance.name_enquiry('0000000000', 999000')
(False, 'Cannot validate account number at this time, Please try again')
Contribution & Issues
- Simply fork the repo, make changes and make a pull request
- You can open an issue for support or suggestions
Author
Contributor
Acknowledgements
- Kuda Bank Team
- Cowrywise Team
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
kudapy-2.0.tar.gz
(7.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
kudapy-2.0-py3-none-any.whl
(9.3 kB
view details)
File details
Details for the file kudapy-2.0.tar.gz.
File metadata
- Download URL: kudapy-2.0.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c868d5d450a3c4461e88dd78766539eb085c821ae1289673e3b8aa5626b92806
|
|
| MD5 |
47ef25c4dff89b9d98fc2f4c80cc0192
|
|
| BLAKE2b-256 |
952364c71d474ab4901889341dc81fa926d5e4aa5ead2b34d8bc5392455baf0e
|
File details
Details for the file kudapy-2.0-py3-none-any.whl.
File metadata
- Download URL: kudapy-2.0-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
143420a95955ac8feb9c0569987eedc8d10e7b2fae99a17da1a084116bc2242c
|
|
| MD5 |
5ffffd7d560580f4963af6e9f19910cb
|
|
| BLAKE2b-256 |
5098cda9d76a906f8dd39e7f047c282c1dc60e87715f83d9993d3f19350d8dcb
|