Pesepay online payment gateway integration
Project description
Installation
pip install pesepay
Getting Started
Import the library into your project/application
from pesepay import Pesepay
Create an instance of the Pesepay class using your integration key and encryption key as supplied by Pesepay.
pesepay = Pesepay("INTEGRATION KEY", "ENCRYPTION KEY");
Set return and result urls
pesepay.result_url = 'https://example.com/result'
pesepay.return_url = 'https://example.com/return'
Make seamless payment
Create the payment
NB: Customer email or number should be provided
payment = pesepay.create_payment('CURRECNCY_CODE', 'PAYMENT_METHOD_CODE', 'CUSTOMER_EMAIL',
'CUSTOMER_PHONE_NUMBER(OPTIONAL)', 'CUSTOMER_NAME(OPTIONAL)')
Create a dict of the required fields (if any)
required_fields = {'requiredFieldName': 'requiredFieldValue'}
Send of the payment
response = pesepay.make_seamless_payment(payment, 'PAYMENT_REASON', 1.00, required_fields)
if response.success:
# Save the reference number and/or poll url (used to check the status of a transaction)
poll_url = response.pollUrl
reference_number = response.referenceNumber
else:
# Get Error Message
message = response.message
Make redirect payment
Create a transaction
transaction = pesepay.create_transaction(amount, 'CURRENCY_CODE', 'PAYMENT_REASON')
Initiate the transaction
response = pesepay.initiate_transaction(transaction)
if response.success:
# Save the reference number and/or poll url (used to check the status of a transaction)
poll_url = response.pollUrl
reference_number = response.referenceNumber
# Get the redirect url and redirect user to complete transaction
redirect_url = response.redirectUrl
else:
# Get Error Message
message = response.message
Check Payment Status
Method 1: Check using reference number
response = pesepay.check_payment(reference_number)
if response.success:
if response.paid:
# Payment was successful
else:
# Get Error Message
message = response.message
Method 2: Check using poll url
response = pesepay.poll_transaction(poll_url)
if response.success:
if response.paid:
# Payment was successful
else:
# Get Error Message
message = response.message
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 pesepay-1.0.8.tar.gz.
File metadata
- Download URL: pesepay-1.0.8.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d367d966aded7355410752a2bdff2923d121276c0b96854f2ba735dfe9772ba4
|
|
| MD5 |
36bc9a70216b46006d37b25c04bfe3a2
|
|
| BLAKE2b-256 |
c931a039b3ca7d9282e058ad4bcc028094969acbb1d2d88c95435a15b037c56a
|
File details
Details for the file pesepay-1.0.8-py3-none-any.whl.
File metadata
- Download URL: pesepay-1.0.8-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73e87797c25b6df2eeefe4c1c5d3db978f29a933b7790b675e35782827de5e98
|
|
| MD5 |
7369c79bb713494dd5bd9b9c763157df
|
|
| BLAKE2b-256 |
d92ce0777a23f666e79e370e1c163de9f65802519591b8c1ce012619f30a2b75
|