Skip to main content

Python package for Webpay gateway API.

Project description

Installation

Install from PyPI:

pip install webpay-bahamta

For async support:

pip install webpay-bahamta[async]

Usage

Simple example:

from webpay import WebpayAPI

API_KEY = "webpay:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx:zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz"
webpay = WebpayAPI(API_KEY)

# Make a payment
payment_url = webpay.payment(
    reference='payment#1',
    amount_irr=100000,
    callback_url='https://example.com',
    payer_mobile='+989111111111',  # Optional
    trusted_pan=None  # Optional
)

# Verify payment
try:
    payment_data = webpay.verify(
        reference='payment#1',
        amount_irr=100000
    )
    if payment_data.get("status") == "paid":
        print("Payment confirmed")
    else:
        print("Payment not confirmed")
except Exception as exc:
    if exc.error_key == 'NOT_CONFIRMED':
        print("Payment not confirmed")
    else:
        raise exc

Async example:

import asyncio
from webpay import AsyncWebpayAPI

API_KEY = "webpay:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx:zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzzz"
webpay = AsyncWebpayAPI(API_KEY)


async def main():
    # Make a payment
    payment_url = await webpay.payment(
        reference='payment#1',
        amount_irr=100000,
        callback_url='https://example.com',
        payer_mobile='+989111111111',  # Optional
        trusted_pan=None  # Optional
    )

    # Verify payment
    try:
        payment_data = await webpay.verify(
            reference='payment#1',
            amount_irr=100000
        )
        if payment_data.get("status") == "paid":
            print("Payment confirmed")
        else:
            print("Payment not confirmed")
    except Exception as exc:
        if exc.error_key == 'NOT_CONFIRMED':
            print("Payment not confirmed")
        else:
            raise exc

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

payment_url will be like:

https://webpay.bahamta.com/api/…

payment_data will be like:

{
    "state": "paid",
    "total": 1000000,
    "wage": 5000,
    "gateway": "sep",
    "terminal": "11223344",
    "pay_ref": "GmshtyjwKSu5lKOLquYrzO9BqjUMb/TPUK0qak/iVs",
    "pay_trace": "935041",
    "pay_pan": "123456******1234",
    "pay_cid": "77CB1B455FB5F60415A7A02E4502134CFD72DBF6D1EC8FA2B48467DFB124AA75A",
    "pay_time": "2019-11-12T16:39:57.686436+03:30"
}

API Documentation

https://webpay.bahamta.com/doc/api

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

webpay-bahamta-0.1.1.tar.gz (4.4 kB view hashes)

Uploaded Source

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