Skip to main content

A Python client for the WaafiPay API

Project description

WaafiPay Python Client

WaafiPay Logo

Overview

The WaafiPay Python Client is a simple and intuitive library for integrating with the WaafiPay payment gateway. It allows you to perform various payment operations such as preauthorizing payments, committing transactions, and canceling preauthorizations, all while managing your API requests seamlessly.

Features

  • Preauthorize Payments: Easily initiate payment preauthorizations with just a few lines of code.
  • Commit Transactions: Securely commit preauthorized payments to finalize transactions.
  • Cancel Preauthorizations: Cancel any pending preauthorizations quickly and efficiently.
  • Easy to Use: Designed with simplicity in mind, making integration straightforward.
  • Secure: Handles sensitive payment information with care.

Installation

You can install the WaafiPay package via pip:

pip install waafipay

Usage

1. Import the Client

First, import the WaafiPayClient class from the package:

from waafipay import WaafiPayClient

2. Initialize the Client

client = WaafiPayClient(
    merchant_uid="XXXXXXX",  # Your merchant UID
    api_user_id="XXXXXX",     # Your API user ID
    api_key="API-XXXXXXXX"  # Your API key
)

3. Preauthorize a Payment

client.preauthorize(
    payer_account="61XXXXXXX", # Payer Account
    amount="0.01", # Amount
    )

4. Commit the Preauthorization

response = client.preauthorize(
    payer_account="61XXXXXXXX", 
    amount="0.01",
    )

response_code = response['responseCode']
if response_code == '2001':
    transaction_id = response['transactionId']
    client.commit(transaction_id=transaction_id)
else:
    errorMessage = response['responseMsg']
    print(errorMessage)

5. Cancel the Preauthorization

response = client.preauthorize(
    payer_account="61XXXXXXXX", 
    amount="0.01",
    )

response_code = response['responseCode']
if response_code == '2001':
    transaction_id = response['transactionId']
    client.cancel(transaction_id=transaction_id)
else:
    errorMessage = response['responseMsg']
    print(errorMessage)

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

waafipay-0.0.9.tar.gz (4.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

waafipay-0.0.9-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file waafipay-0.0.9.tar.gz.

File metadata

  • Download URL: waafipay-0.0.9.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.1

File hashes

Hashes for waafipay-0.0.9.tar.gz
Algorithm Hash digest
SHA256 73ba263a32b67ae707df27f8d1adf3202c2591449fe44b038dc2422bdb4555f8
MD5 e700a61709630016363b5f2a6fd9848f
BLAKE2b-256 baf994e4259874db334fce7ef8df2ebdeb566ff568d7aa4c0ac31bea5d0f0024

See more details on using hashes here.

File details

Details for the file waafipay-0.0.9-py3-none-any.whl.

File metadata

  • Download URL: waafipay-0.0.9-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.1

File hashes

Hashes for waafipay-0.0.9-py3-none-any.whl
Algorithm Hash digest
SHA256 4b715bab3d38441a082d0691a0b04cad85fa014fbdd89613dd6081f1d62af9a1
MD5 dd84e6606d44ab383c98a725d1bd890d
BLAKE2b-256 74ae16eb2763d371c5fd21862a0eb6ea1b9ad30fc19719606e9c69bdc33de684

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page