Skip to main content

Python client for ČSOB Payment Gateway

Project description

Python client for ČSOB payment gateway

Latest CircleCI build:

https://circleci.com/gh/whit/pycsob.svg?style=svg

Install:

pip install pycsob

Run tests:

python setup.py test

Usage:

from pycsob.client import CsobClient, CsobClientError
from pycsob import conf

c = CsobClient('MERCHANT_ID', 'https://iapi.iplatebnibrana.csob.cz/api/v1.6/',
               '/path/to/your/private.key',
               '/path/to/mips_iplatebnibrana.csob.cz.pub')

# init payment
# note: total_amount = 20000.00
r = c.payment_init(1, 2000000, 'https://return.url/', 'Some note', customer_id='a@a.aa')

assert r['resultCode'] == conf.RETURN_CODE_OK
c.payment_status(r['payId'])
c.payment_close(r['payId'])
# ...

# init payment and also create template for one-click payment
r = c.payment_init(2, 2000000, 'https://return.url/', 'Some note', customer_id='a@a.aa',
                   return_method='POST', pay_operation='oneclickPayment')

# init one-click payment
r = c.oneclick_init(r['payId'], 123, 10000)

# start (process) one-click payment
r = c.oneclick_start(r['payId'])

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

pycsob-0.1.0.tar.gz (7.6 kB view hashes)

Uploaded Source

Built Distribution

pycsob-0.1.0-py2.py3-none-any.whl (10.2 kB view hashes)

Uploaded Python 2 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