Coder Social home page Coder Social logo

pyrcws's Introduction

PyRCWS

Autorização e captura de transações com webservice da Redecard.

Instalação

pip install pyrcws

Necessita da lib suds -- é instalada automaticamente com "pip install pyrcws".

Como usar

# coding: utf-8
from decimal import Decimal
from pyrcws import GetAuthorizedException, PaymentAttempt

params = {
    'affiliation_id': '123456789',
    'total': Decimal('0.01'),
    'order_id': '763AH1', # strings are allowed here
    'card_number': '1234567890123456',
    'cvc2': 423,
    'exp_month': 1,
    'exp_year': 2010,
    'card_holders_name': 'JOAO DA SILVA',
    'installments': 1,
}

attempt = PaymentAttempt(**params)
try:
    attempt.get_authorized()
except GetAuthorizedException, e:
    print u'Erro %s: %s' % (e.codret, e.msg)
else:
    attempt.capture()

Mais informações

Os código e a mensagem do erro (GetAuthorizedException) são passados pelo webservice, use o manual da Redecard disponível no site para mais informações.

pyrcws's People

Contributors

renatogp avatar jonatasoliveira avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.