Skip to main content

Zibal payment gateway

Project description

Zibal Payment Gateway

N|Zibal

Installation

Zibal Payment pacakge requires Requests to run.

Install the package using pip

$ pip install zibal

For upgrading to newer versions

$ pip install zibal --upgrade

Usage

You can send a request and verify your payment using this package. Also you can use this package to translate the result codes to printable messages Pass your merchant_id and callback url while creating a zibal instance

import zibal.zibal as zibal

merchant_id = 'Your merchant id, use zibal for testing'
callback_url = 'https://yourdomain.com/callbackUrl'

zb = zibal.zibal(merchant_id, callback_url)
amount = 30000 # IRR
request_to_zibal = zb.request(amount)

Now you can access the parameters using

track_id = request_to_zibal['trackId']
request_result_code = request_to_zibal['result']

Pass the result code to the translator function "requeset_result(result_code)" to create printable output Python3 example:

print(zb.request_result(request_result_code))

Verify the payment using the verify function

verify_zibal = zb.verify(track_id)
verify_result = verify_zibal['result']

Now you can access the parameters using

ref_number = verify_zibal['refNumber']
verify_result_code = verify_zibal['result']

Pass the result code to the translator function "verify_result(result_code)" to create printable output Python3 example:

print(zb.verify_result(verify_result_code))

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

zibal-1.1.0.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

zibal-1.1.0-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

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