├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── bin ├── html_pyboleto_sample.py ├── pdf_pyboleto_in_memory_sample.py └── pdf_pyboleto_sample.py ├── docs ├── Makefile ├── _static │ └── .gitignore ├── _templates │ └── layout.html ├── conf.py ├── index.rst ├── make.bat ├── modules.rst ├── pyboleto.bank.rst ├── pyboleto.django.rst └── pyboleto.rst ├── pyboleto ├── __init__.py ├── bank │ ├── __init__.py │ ├── bancodobrasil.py │ ├── banrisul.py │ ├── bradesco.py │ ├── caixa.py │ ├── caixa_sigcb.py │ ├── cecred.py │ ├── hsbc.py │ ├── itau.py │ ├── santander.py │ ├── sicoob.py │ └── sicredi.py ├── data.py ├── html.py ├── media │ ├── logo_bancobradesco.jpg │ ├── logo_bancocaixa.jpg │ ├── logo_bancohsbc.jpg │ ├── logo_bancoreal.jpg │ ├── logo_banrisul.jpg │ ├── logo_bb.jpg │ ├── logo_cecred.jpg │ ├── logo_itau.jpg │ ├── logo_santander.png │ ├── logo_sicoob.jpg │ └── logo_sicredi.png ├── pdf.py └── templates │ ├── head.html │ ├── recibo_caixa.html │ └── recibo_sacado.html ├── requirements.txt ├── setup.cfg ├── setup.py ├── specs ├── BancoDoBrasil │ └── Doc5175Bloqueto.pdf ├── BancoReal │ ├── COBRANCA_240_POSICOES.pdf │ └── COBRANCA_CARNES_400_POSICOES.pdf ├── Bradesco │ ├── Boleto_formulas_layout_bradesco.doc │ ├── Layout Cobranca e Boleto Completo BRADESCO_ATUALIZADO.pdf │ ├── Layout_Bradesco_ArqRetorno.pdf │ └── Manual_BRADESCO.PDF ├── Caixa │ ├── CEF-SIGCB.doc │ ├── CEF-SINCO Cnab240.pdf │ ├── CNAB240_SINCO.pdf │ ├── Caixa Economica Federal - Cobranca.doc │ ├── Codigo_Barras_Bloquetos_Cobranca_sem_Registro_SINCO.pdf │ ├── Manual Codigo de Barras.doc │ └── Manual_CAIXA.PDF ├── Febraban │ ├── layout240V0803.pdf │ └── layoutRecebimentoCodigoBarrasv28052004.pdf ├── HSBC │ ├── cnr240-remessa.pdf │ ├── cnr240.pdf │ ├── cnrbarra.pdf │ ├── cnrremes.pdf │ ├── cnrretor.pdf │ ├── cob240.pdf │ ├── cob400_jan.pdf │ └── cobbarra.pdf ├── Itau │ └── cobranca_cnab240.pdf ├── Santander │ └── Layout de Cobrança - Código de Barras Santander Setembro 2012 v 2 3.pdf ├── Sicoob │ └── Layout Sicoob.xls └── Sicredi │ ├── manual-cnab-240.pdf │ └── manual-cnab-400.pdf └── tests ├── __init__.py ├── html ├── BoletoBB-expected.html ├── BoletoBanrisul-expected.html ├── BoletoBradesco-expected.html ├── BoletoCaixa-expected.html ├── BoletoHsbc-expected.html ├── BoletoHsbcComRegistro-expected.html ├── BoletoItau-expected.html ├── BoletoSantander-expected.html ├── BoletoSicoob-expected.html └── BoletoSicredi-expected.html ├── test_banco_banrisul.py ├── test_banco_bradesco.py ├── test_banco_caixa.py ├── test_banco_do_brasil.py ├── test_banco_hsbc.py ├── test_banco_hsbc_com_registro.py ├── test_banco_itau.py ├── test_banco_santander.py ├── test_banco_sicoob.py ├── test_banco_sicredi.py ├── testutils.py └── xml ├── BoletoBB-expected.xml ├── BoletoBanrisul-expected.xml ├── BoletoBradesco-expected.xml ├── BoletoCaixa-expected.xml ├── BoletoHsbc-expected.xml ├── BoletoHsbcComRegistro-expected.xml ├── BoletoItau-expected.xml ├── BoletoSantander-expected.xml ├── BoletoSicoob-expected.xml ├── BoletoSicredi-expected.xml ├── Triplo-BoletoBB-expected.xml ├── Triplo-BoletoBanrisul-expected.xml ├── Triplo-BoletoBradesco-expected.xml ├── Triplo-BoletoCaixa-expected.xml ├── Triplo-BoletoHsbc-expected.xml ├── Triplo-BoletoHsbcComRegistro-expected.xml ├── Triplo-BoletoItau-expected.xml ├── Triplo-BoletoSantander-expected.xml ├── Triplo-BoletoSicoob-expected.xml └── Triplo-BoletoSicredi-expected.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/README.rst -------------------------------------------------------------------------------- /bin/html_pyboleto_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/bin/html_pyboleto_sample.py -------------------------------------------------------------------------------- /bin/pdf_pyboleto_in_memory_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/bin/pdf_pyboleto_in_memory_sample.py -------------------------------------------------------------------------------- /bin/pdf_pyboleto_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/bin/pdf_pyboleto_sample.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/pyboleto.bank.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/pyboleto.bank.rst -------------------------------------------------------------------------------- /docs/pyboleto.django.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/pyboleto.django.rst -------------------------------------------------------------------------------- /docs/pyboleto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/docs/pyboleto.rst -------------------------------------------------------------------------------- /pyboleto/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.7' 2 | -------------------------------------------------------------------------------- /pyboleto/bank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/__init__.py -------------------------------------------------------------------------------- /pyboleto/bank/bancodobrasil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/bancodobrasil.py -------------------------------------------------------------------------------- /pyboleto/bank/banrisul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/banrisul.py -------------------------------------------------------------------------------- /pyboleto/bank/bradesco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/bradesco.py -------------------------------------------------------------------------------- /pyboleto/bank/caixa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/caixa.py -------------------------------------------------------------------------------- /pyboleto/bank/caixa_sigcb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/caixa_sigcb.py -------------------------------------------------------------------------------- /pyboleto/bank/cecred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/cecred.py -------------------------------------------------------------------------------- /pyboleto/bank/hsbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/hsbc.py -------------------------------------------------------------------------------- /pyboleto/bank/itau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/itau.py -------------------------------------------------------------------------------- /pyboleto/bank/santander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/santander.py -------------------------------------------------------------------------------- /pyboleto/bank/sicoob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/sicoob.py -------------------------------------------------------------------------------- /pyboleto/bank/sicredi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/bank/sicredi.py -------------------------------------------------------------------------------- /pyboleto/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/data.py -------------------------------------------------------------------------------- /pyboleto/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/html.py -------------------------------------------------------------------------------- /pyboleto/media/logo_bancobradesco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_bancobradesco.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_bancocaixa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_bancocaixa.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_bancohsbc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_bancohsbc.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_bancoreal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_bancoreal.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_banrisul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_banrisul.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_bb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_bb.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_cecred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_cecred.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_itau.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_itau.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_santander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_santander.png -------------------------------------------------------------------------------- /pyboleto/media/logo_sicoob.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_sicoob.jpg -------------------------------------------------------------------------------- /pyboleto/media/logo_sicredi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/media/logo_sicredi.png -------------------------------------------------------------------------------- /pyboleto/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/pdf.py -------------------------------------------------------------------------------- /pyboleto/templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/templates/head.html -------------------------------------------------------------------------------- /pyboleto/templates/recibo_caixa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/templates/recibo_caixa.html -------------------------------------------------------------------------------- /pyboleto/templates/recibo_sacado.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/pyboleto/templates/recibo_sacado.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/setup.py -------------------------------------------------------------------------------- /specs/BancoDoBrasil/Doc5175Bloqueto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/BancoDoBrasil/Doc5175Bloqueto.pdf -------------------------------------------------------------------------------- /specs/BancoReal/COBRANCA_240_POSICOES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/BancoReal/COBRANCA_240_POSICOES.pdf -------------------------------------------------------------------------------- /specs/BancoReal/COBRANCA_CARNES_400_POSICOES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/BancoReal/COBRANCA_CARNES_400_POSICOES.pdf -------------------------------------------------------------------------------- /specs/Bradesco/Boleto_formulas_layout_bradesco.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Bradesco/Boleto_formulas_layout_bradesco.doc -------------------------------------------------------------------------------- /specs/Bradesco/Layout Cobranca e Boleto Completo BRADESCO_ATUALIZADO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Bradesco/Layout Cobranca e Boleto Completo BRADESCO_ATUALIZADO.pdf -------------------------------------------------------------------------------- /specs/Bradesco/Layout_Bradesco_ArqRetorno.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Bradesco/Layout_Bradesco_ArqRetorno.pdf -------------------------------------------------------------------------------- /specs/Bradesco/Manual_BRADESCO.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Bradesco/Manual_BRADESCO.PDF -------------------------------------------------------------------------------- /specs/Caixa/CEF-SIGCB.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Caixa/CEF-SIGCB.doc -------------------------------------------------------------------------------- /specs/Caixa/CEF-SINCO Cnab240.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Caixa/CEF-SINCO Cnab240.pdf -------------------------------------------------------------------------------- /specs/Caixa/CNAB240_SINCO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Caixa/CNAB240_SINCO.pdf -------------------------------------------------------------------------------- /specs/Caixa/Caixa Economica Federal - Cobranca.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Caixa/Caixa Economica Federal - Cobranca.doc -------------------------------------------------------------------------------- /specs/Caixa/Codigo_Barras_Bloquetos_Cobranca_sem_Registro_SINCO.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Caixa/Codigo_Barras_Bloquetos_Cobranca_sem_Registro_SINCO.pdf -------------------------------------------------------------------------------- /specs/Caixa/Manual Codigo de Barras.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Caixa/Manual Codigo de Barras.doc -------------------------------------------------------------------------------- /specs/Caixa/Manual_CAIXA.PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Caixa/Manual_CAIXA.PDF -------------------------------------------------------------------------------- /specs/Febraban/layout240V0803.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Febraban/layout240V0803.pdf -------------------------------------------------------------------------------- /specs/Febraban/layoutRecebimentoCodigoBarrasv28052004.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Febraban/layoutRecebimentoCodigoBarrasv28052004.pdf -------------------------------------------------------------------------------- /specs/HSBC/cnr240-remessa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cnr240-remessa.pdf -------------------------------------------------------------------------------- /specs/HSBC/cnr240.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cnr240.pdf -------------------------------------------------------------------------------- /specs/HSBC/cnrbarra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cnrbarra.pdf -------------------------------------------------------------------------------- /specs/HSBC/cnrremes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cnrremes.pdf -------------------------------------------------------------------------------- /specs/HSBC/cnrretor.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cnrretor.pdf -------------------------------------------------------------------------------- /specs/HSBC/cob240.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cob240.pdf -------------------------------------------------------------------------------- /specs/HSBC/cob400_jan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cob400_jan.pdf -------------------------------------------------------------------------------- /specs/HSBC/cobbarra.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/HSBC/cobbarra.pdf -------------------------------------------------------------------------------- /specs/Itau/cobranca_cnab240.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Itau/cobranca_cnab240.pdf -------------------------------------------------------------------------------- /specs/Santander/Layout de Cobrança - Código de Barras Santander Setembro 2012 v 2 3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Santander/Layout de Cobrança - Código de Barras Santander Setembro 2012 v 2 3.pdf -------------------------------------------------------------------------------- /specs/Sicoob/Layout Sicoob.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Sicoob/Layout Sicoob.xls -------------------------------------------------------------------------------- /specs/Sicredi/manual-cnab-240.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Sicredi/manual-cnab-240.pdf -------------------------------------------------------------------------------- /specs/Sicredi/manual-cnab-400.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/specs/Sicredi/manual-cnab-400.pdf -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/html/BoletoBB-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoBB-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoBanrisul-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoBanrisul-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoBradesco-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoBradesco-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoCaixa-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoCaixa-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoHsbc-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoHsbc-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoHsbcComRegistro-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoHsbcComRegistro-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoItau-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoItau-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoSantander-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoSantander-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoSicoob-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoSicoob-expected.html -------------------------------------------------------------------------------- /tests/html/BoletoSicredi-expected.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/html/BoletoSicredi-expected.html -------------------------------------------------------------------------------- /tests/test_banco_banrisul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_banrisul.py -------------------------------------------------------------------------------- /tests/test_banco_bradesco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_bradesco.py -------------------------------------------------------------------------------- /tests/test_banco_caixa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_caixa.py -------------------------------------------------------------------------------- /tests/test_banco_do_brasil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_do_brasil.py -------------------------------------------------------------------------------- /tests/test_banco_hsbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_hsbc.py -------------------------------------------------------------------------------- /tests/test_banco_hsbc_com_registro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_hsbc_com_registro.py -------------------------------------------------------------------------------- /tests/test_banco_itau.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_itau.py -------------------------------------------------------------------------------- /tests/test_banco_santander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_santander.py -------------------------------------------------------------------------------- /tests/test_banco_sicoob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_sicoob.py -------------------------------------------------------------------------------- /tests/test_banco_sicredi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/test_banco_sicredi.py -------------------------------------------------------------------------------- /tests/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/testutils.py -------------------------------------------------------------------------------- /tests/xml/BoletoBB-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoBB-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoBanrisul-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoBanrisul-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoBradesco-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoBradesco-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoCaixa-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoCaixa-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoHsbc-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoHsbc-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoHsbcComRegistro-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoHsbcComRegistro-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoItau-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoItau-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoSantander-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoSantander-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoSicoob-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoSicoob-expected.xml -------------------------------------------------------------------------------- /tests/xml/BoletoSicredi-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/BoletoSicredi-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoBB-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoBB-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoBanrisul-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoBanrisul-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoBradesco-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoBradesco-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoCaixa-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoCaixa-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoHsbc-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoHsbc-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoHsbcComRegistro-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoHsbcComRegistro-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoItau-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoItau-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoSantander-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoSantander-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoSicoob-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoSicoob-expected.xml -------------------------------------------------------------------------------- /tests/xml/Triplo-BoletoSicredi-expected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trust-Code/python-boleto/HEAD/tests/xml/Triplo-BoletoSicredi-expected.xml --------------------------------------------------------------------------------