gerencianet/gn-api-sdk-python

View on GitHub
examples/default/others/get_installments.py

Summary

Maintainability
A
1 hr
Test Coverage
# encoding: utf-8

from gerencianet import Gerencianet
from ...credentials import credentials

gn = Gerencianet(credentials.CREDENTIALS)

params = {
    'brand': 'visa',
    'total': 5000
}

response =  gn.get_installments(params=params)
print(response)