Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 675 Bytes

README.markdown

File metadata and controls

21 lines (18 loc) · 675 Bytes

API Pagseguro

Installation

If you have setuptools you can use $ easy_install -U pypagseguro Otherwise, you can download the source from GitHub and run $ python setup.py install

Examples

Some simple examples of what pyPagSeguro code looks like: # -- coding: utf-8 -- from pypagseguro import * carrinho = Pagseguro(email_cobranca='[email protected]',tipo='CP') carrinho.item(id=1, descr='Um produto de exemplo', quant=5, valor=10) carrinho.item(id=2, descr='Outro produto de exemplo', quant=2, valor=100) print carrinho.mostra()