A package to handle rede payments api
Project description
SDK Python
SDK de integração eRede
Utilizando
Autorizando uma transação
from erede import *
store = Store("PV", "TOKEN", Environment.sandbox())
transaction = Transaction(12345, "Reference")
transaction.credit_card("5448280000000007", "123", "12", "2020", "Fulano de Tal")
transaction.set_additional(3456, 12)
try:
transaction = eRede(store).create(transaction)
if transaction.returnCode == "00":
print("Transação aprovada com sucesso. O tid é: {}".format(transaction.tid))
except RedeError as e:
print("Opz[{}]: {}".format(e.code, e))
Por padrão, a transação é capturada automaticamente; caso seja necessário apenas autorizar a transação, o método Transaction.capture_transaction(False) deverá ser chamado com o parâmetro False:
from erede import *
store = Store("PV", "TOKEN", Environment.sandbox())
transaction = Transaction(12345, "Reference")
transaction.credit_card("5448280000000007", "123", "12", "2020", "Fulano de Tal").capture_transaction(False)
try:
transaction = eRede(store).create(transaction)
if transaction.returnCode == "00":
print("Transação aprovada com sucesso. O tid é: {}".format(transaction.tid))
except RedeError as e:
print("Opz[{}]: {}".format(e.code, e))
Autorizando uma transação com MCC dinâmico
from erede import *
store = Store("PV", "TOKEN", Environment.sandbox())
transaction = Transaction(12345, "Reference")
transaction.credit_card("5448280000000007", "123", "12", "2020", "Fulano de Tal")
transaction.mcc("LOJADOZE", "22349202212", SubMerchant("1234", "Sao Paulo", "Brasil"))
try:
transaction = eRede(store).create(transaction)
if transaction.returnCode == "00":
print("Transação aprovada com sucesso. O tid é: {}".format(transaction.tid))
except RedeError as e:
print("Opz[{}]: {}".format(e.code, e))
Autorizando uma transação com identificação de plataforma
from erede import *
store = Store("PV", "TOKEN", Environment.sandbox())
transaction = Transaction(12345, "Reference")
transaction.credit_card("5448280000000007", "123", "12", "2020", "Fulano de Tal")
transaction.set_additional(1234, 12)
try:
transaction = eRede(store).create(transaction)
if transaction.returnCode == "00":
print("Transação aprovada com sucesso. O tid é: {}".format(transaction.tid))
except RedeError as e:
print("Opz[{}]: {}".format(e.code, e))
Autorizando uma transação IATA
from erede import *
store = Store("PV", "TOKEN", Environment.sandbox())
transaction = Transaction(12345, "Reference")
transaction.credit_card("5448280000000007", "123", "12", "2020", "Fulano de Tal")
transaction.set_iata("code123", "250")
try:
transaction = eRede(store).create(transaction)
if transaction.returnCode == "00":
print("Transação aprovada com sucesso. O tid é: {}".format(transaction.tid))
except RedeError as e:
print("Opz[{}]: {}".format(e.code, e))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rede payments-1.0.0.tar.gz
(7.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rede payments-1.0.0.tar.gz.
File metadata
- Download URL: rede payments-1.0.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e083fcebcaa8cb448ac16e927a3f5c8d98ca5cc20251720c117642d9d7a1048
|
|
| MD5 |
35b7f79efd74f0c09cadd74d3b5e7308
|
|
| BLAKE2b-256 |
d1e2836e5e9eee995e6079bd5b7d6625de75ab993d3921f8c49ab94b9f8bfedf
|
File details
Details for the file rede_payments-1.0.0-py3-none-any.whl.
File metadata
- Download URL: rede_payments-1.0.0-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.0 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d408e82d1d7d09a43cccd5ebbc4bd5ca92f5c89e5993e2caa01feabf8a917bf9
|
|
| MD5 |
6e8b6562857f60d7b4c6c56022b38e9f
|
|
| BLAKE2b-256 |
8b1ef55fabbb849ddc2d8a734e3c225e170896b282bf7a9f3af25304b3e2b5c9
|