A python wrapper of the Pesapal V3 payments API.
Project description
pesapal
Unofficial SDK wrapper for the pesapal v3 payments API.
Requirements
- python version >= 3.8
Installation
pip install pesapal-v3
Usage
from pesapal_v3 import Pesapal
client = Pesapal(consumer_key, consumer_secret)
Supported endpoints
Register IPN
ipn_url = "https://example.com/ipn/notifications"
ipn = client.register_ipn_url(ipn_url=ipn_url)
if ipn.status != "200":
# error occured registering your IPN
print(ipn.error)
else:
# IPN successfully registered
print(ipn)
List registered IPNs
ipns = client.get_registered_ipns()
print(ipns)
Submit order request
order_request = {
"id": "s945e4af-80a5-4ec1-8706-e03f8332fb04",
"currency": "KES",
"amount": 350.00,
"description": "Thank you for this SDK",
"callback_url": "https://example.com/cancellation",
"notification_id": "fe078e53-78da-4a83-aa89-e7ded5c456e6",
"billing_address": {
"email_address": "john.doe@example.com",
"phone_number": "0723xxxxxx",
"country_code": "KE",
"first_name": "John",
"middle_name": "",
"last_name": "Doe",
"line_1": "Pesapal Limited",
"line_2": "",
"city": "",
"state": "",
"postal_code": "",
"zip_code": ""
}
}
request = client.submit_order_request(order_request=order_request)
Transaction status
status = client.get_transaction_status(order_tracking_id="b945e4af-80a5-4ec1-8706-e03f8332fb04")
Subscriptions
order_request = {
"id": "s945e4af-80a5-4ec1-8706-e03f8332fb04",
"currency": "KES",
"amount": 350.00,
"description": "Thank you for this SDK",
"callback_url": "https://example.com/cancellation",
"notification_id": "fe078e53-78da-4a83-aa89-e7ded5c456e6",
"billing_address": {
"email_address": "john.doe@example.com",
"phone_number": "0723xxxxxx",
"country_code": "KE",
"first_name": "John",
"middle_name": "",
"last_name": "Doe",
"line_1": "Pesapal Limited",
"line_2": "",
"city": "",
"state": "",
"postal_code": "",
"zip_code": ""
},
"account_number": "555-678",
"subscription_details": {
"start_date": "24-01-2023",
"end_date": "31-12-2023",
"frequency": "DAILY"
}
}
request = client.submit_order_request(order_request=order_request, is_subscription=True)
print(request)
Refund
refund =
{
"confirmation_code": "AA11BB22",
"amount": "100.00",
"username": "John Doe",
"remarks": "Service not offered"
}
client.refund(refund)
Support
For any issues, bugs you can raise an issue on the project issues board.
For compliments and gigs you can reach out to the developer via email martinmshale@gmail.com.
For service level issues, reach out to Pesapal.
Lastly, I need the developer juice to produce more of these open source solutions. Be among the few who have supported these effort by buying me a coffee.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
File details
Details for the file pesapal_v3-1.0.0.tar.gz.
File metadata
- Download URL: pesapal_v3-1.0.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd77557f3dec5626cf2202136fb830c58c8e7118fd1118beae0b857f6d609f11
|
|
| MD5 |
51002b6bbf5503ee69b99961e728b0e9
|
|
| BLAKE2b-256 |
cc94962d4a70c63be53b602d0225492a7b0d9661de597a3b26eafe40bf148e35
|
File details
Details for the file pesapal_v3-1.0.0-py3-none-any.whl.
File metadata
- Download URL: pesapal_v3-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
286029f960478415d7c1c20473deee3921b9e97990cd61f0d9ab72fe045569e3
|
|
| MD5 |
510ef3e315917d0548e9e9545da19b32
|
|
| BLAKE2b-256 |
8360289efdc3f91cd948da8bca186e50b4679dee5387e54c8624c31897fbae96
|