├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── python-app.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── api.rst ├── conf.py ├── history.rst ├── index.rst ├── make.bat └── readme.rst ├── pyitau ├── __init__.py ├── main.py └── pages.py ├── pyproject.toml ├── requirements-dev.txt ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── pages ├── test_authenticated_home.py ├── test_card_details.py ├── test_cards.py ├── test_checking_account_full_statement.py ├── test_checking_account_menu.py ├── test_checking_account_statements.py ├── test_checking_cards_menu.py ├── test_first_router.py ├── test_menu.py ├── test_password.py └── test_second_router.py ├── responses ├── authenticate2.html ├── authenticate5.html ├── authenticate8.html ├── card_details.html ├── cards_page.html ├── checking_account_full_statement.html └── third_router_page.html ├── test_authenticate.py ├── test_get_credit_card_invoice.py ├── test_itau.py └── test_third_router_page.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst *.txt LICENSE 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /pyitau/__init__.py: -------------------------------------------------------------------------------- 1 | from pyitau.main import Itau # noqa 2 | -------------------------------------------------------------------------------- /pyitau/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/pyitau/main.py -------------------------------------------------------------------------------- /pyitau/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/pyitau/pages.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pages/test_authenticated_home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_authenticated_home.py -------------------------------------------------------------------------------- /tests/pages/test_card_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_card_details.py -------------------------------------------------------------------------------- /tests/pages/test_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_cards.py -------------------------------------------------------------------------------- /tests/pages/test_checking_account_full_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_checking_account_full_statement.py -------------------------------------------------------------------------------- /tests/pages/test_checking_account_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_checking_account_menu.py -------------------------------------------------------------------------------- /tests/pages/test_checking_account_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_checking_account_statements.py -------------------------------------------------------------------------------- /tests/pages/test_checking_cards_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_checking_cards_menu.py -------------------------------------------------------------------------------- /tests/pages/test_first_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_first_router.py -------------------------------------------------------------------------------- /tests/pages/test_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_menu.py -------------------------------------------------------------------------------- /tests/pages/test_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_password.py -------------------------------------------------------------------------------- /tests/pages/test_second_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/pages/test_second_router.py -------------------------------------------------------------------------------- /tests/responses/authenticate2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/responses/authenticate2.html -------------------------------------------------------------------------------- /tests/responses/authenticate5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/responses/authenticate5.html -------------------------------------------------------------------------------- /tests/responses/authenticate8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/responses/authenticate8.html -------------------------------------------------------------------------------- /tests/responses/card_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/responses/card_details.html -------------------------------------------------------------------------------- /tests/responses/cards_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/responses/cards_page.html -------------------------------------------------------------------------------- /tests/responses/checking_account_full_statement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/responses/checking_account_full_statement.html -------------------------------------------------------------------------------- /tests/responses/third_router_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/responses/third_router_page.html -------------------------------------------------------------------------------- /tests/test_authenticate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/test_authenticate.py -------------------------------------------------------------------------------- /tests/test_get_credit_card_invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/test_get_credit_card_invoice.py -------------------------------------------------------------------------------- /tests/test_itau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/test_itau.py -------------------------------------------------------------------------------- /tests/test_third_router_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasrcezimbra/pyitau/HEAD/tests/test_third_router_page.py --------------------------------------------------------------------------------