Skip to main content

Python implementation of Transbank's Webpay protocol. A port from ruby implementation http://github.com/sagmor/tbk.

Project description

tbk - Transbank's Webpay protocol
=================================

**Attention: Beta not ready for production**

Python implementation of Transbank's Webpay protocol. A port from ruby
implementation http://github.com/sagmor/tbk.

.. raw:: html

<!-- split here -->


|Build Status| |Coverage Status|


Usage
-----

Set environment variable for Commerce and initialize.

::

os.environ['TBK_COMMERCE_ID'] = "597026007976"
os.environ['TBK_COMMERCE_KEY'] = "-----BEGIN RSA PRIVATE KEY-----\nMIIEowIBAAKCAQEAn3HzPC1ZBzCO3edUCf/XJiwj3bzJpjjTi/zBO9O+DDzZCaMp...""

from tbk.webpay.commerce import Commerce
commerce = Commerce.create_commerce()


Create a new payment and redirect user.

::


from tbk.webpay.payment import Payment

payment = Payment(
request_ip='123.123.123.123',
commerce=commerce,
success_url='http://localhost:8080/webpay/success/',
confirmation_url='http://127.0.0.1:8080/webpay/confirmation/',
failure_url='http://localhost:8080/webpay/failure/',
session_id='SOME_SESSION_VALUE',
amount=123456,
order_id=1,
)
payment.redirect_url()


Then to confirm payment, use an endpoint with:

::

from tbk.webpay.confirmation import Confirmation

def confirmation(request):
conf = Confirmation(
commerce=commerce,
request_ip=request.ip_address,
data=request.POST
)

if validate_confirmation(conf) or not conf.is_success() :
return HttpResponse(conf.reject)

return HttpResponse(conf.acknowledge)


More info at http://github.com/sagmor/tbk


Development
-----------

After cloning the repo:

::

python setup.py develop

For testing purposes:

::

python setup.py test

Recommended:

::

pip install nosy
nosy


**TODO**

* *Fetch token* - Done!
* *Confirmation* - Done!
* Logging

About webpay communication protocol:
http://sagmor.com/rants/technical/webpay-communication-protocol/





.. |Build Status| image:: https://travis-ci.org/pedroburon/tbk.svg
:target: https://travis-ci.org/pedroburon/tbk
.. |Coverage Status| image:: https://img.shields.io/coveralls/pedroburon/tbk.svg
:target: https://coveralls.io/r/pedroburon/tbk

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

tbk-0.0.2.tar.gz (13.0 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