Client to consume Banco Inter APIs
Project description
Banco Inter
Client to consume Banco Inter APIs
- Documentation: https://bancointer.readthedocs.io.
Installation
pip install bancointer
How to Use
High-level API
from inter import Inter
inter = Inter(
client_id="YOUR_CLIENT_ID",
client_secret="YOUR_CLIENT_SECRET"
cert_path='/path/to/certificado.crt',
key_path='/path/to/chave.key',
)
# get September/2022 statements
inter.get_statements(date(2022, 9, 1), date(2022, 9, 30))
Testing
from inter.testing import InterFake
def my_function(inter):
return inter.get_balance()
def test_my_function():
inter = InterFake()
result = my_function(inter)
assert result == inter.balance
Low-level API
from datetime import date
from inter import Client as Inter
inter = Inter(
"YOUR_CLIENT_ID",
"YOUR_CLIENT_SECRET"
'/path/to/certificado.crt',
'/path/to/chave.key',
)
# get September/2022 statements
inter.get_statements(date(2022, 9, 1), date(2022, 9, 30))
Testing
from inter.testing import ClientFake
def my_function(client):
return client.get_balance()
def test_my_function():
client = ClientFake()
result = my_function(client)
assert result == client.balance
Contributing
Contributions are welcome, feel free to open an Issue or Pull Request.
Pull requests must be for the develop
branch.
git clone https://github.com/lucasrcezimbra/bancointer
cd bancointer
git checkout develop
python -m venv .venv
source .venv/bin/activate
pip install .[test]
pre-commit install
pytest
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
bancointer-0.1.1.tar.gz
(15.4 kB
view hashes)
Built Distribution
bancointer-0.1.1-py3-none-any.whl
(16.6 kB
view hashes)
Close
Hashes for bancointer-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76cb9a8da43ba02a988b30e136f7c00e9e5646f13e5474cc465fc0bde0c1a41d |
|
MD5 | 5aa44c4d1f94d13890ca90c4941fc335 |
|
BLAKE2b-256 | 0320271d613523c3079d7ac203c364721fa3289f028783afebcfb41b841922d5 |