Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lucasrcezimbra/pyitau
- Owner: lucasrcezimbra
- License: lgpl-2.1
- Created: 2019-06-23T03:27:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-11-11T20:44:37.000Z (3 days ago)
- Last Synced: 2024-11-11T21:33:51.283Z (3 days ago)
- Topics: bank, banking, client, finance, itau, pyitau, python, python3, requests, scraper
- Language: HTML
- Homepage: https://pypi.org/project/pyitau/
- Size: 226 KB
- Stars: 51
- Watchers: 6
- Forks: 15
- Open Issues: 18
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.rst
- License: LICENSE
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 StatusUnofficial client to access your Itaú bank data
* Documentation: https://pyitau.readthedocs.io.
* Status page: https://pyitau.betteruptime.com/Installation
~~~~~~~~~~~~~
.. code-block:: shellpip install pyitau
How to Use
~~~~~~~~~~~~~
.. code-block:: pythonfrom 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