Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lucasrcezimbra/pyitau

Unofficial client to access your Itaú bank data
https://github.com/lucasrcezimbra/pyitau

bank banking client finance itau pyitau python python3 requests scraper

Last synced: about 3 hours ago
JSON representation

Unofficial client to access your Itaú bank data

Awesome Lists containing this project

README

        

======
pyitau
======

.. image:: https://badge.fury.io/py/pyitau.svg
:target: https://badge.fury.io/py/pyitau
:alt: PyPI

.. image:: https://readthedocs.org/projects/pyitau/badge/?version=latest
:target: https://pyitau.readthedocs.io/en/latest/?version=latest
:alt: Documentation Status

Unofficial client to access your Itaú bank data

* Documentation: https://pyitau.readthedocs.io.
* Status page: https://pyitau.betteruptime.com/

Installation
~~~~~~~~~~~~~
.. code-block:: shell

pip install pyitau

How to Use
~~~~~~~~~~~~~
.. code-block:: python

from pyitau import Itau

# Login
itau = Itau(agency='0000', account='12345', account_digit='5', password='012345')
itau.authenticate()

itau.get_statements()

Contributing
~~~~~~~~~~~~~
Contributions are welcome, feel free to open an Issue or Pull Request.

Pull requests must be for the `develop` branch.

.. code-block:: bash

git clone https://github.com/lucasrcezimbra/pyitau
cd pyitau
git checkout develop
python -m venv .venv
pip install -r requirements-dev.txt
pre-commit install
pytest