Created
October 27, 2015 12:37
-
-
Save fchevitarese/90d8a505c972c560f63c to your computer and use it in GitHub Desktop.
tryboleto.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in range(0, len(listaDadosCaixa), 2): | |
try: | |
boleto.drawBoletoCarneDuplo( | |
listaDadosCaixa[i], | |
listaDadosCaixa[i + 1] | |
) | |
boleto.nextPage() | |
except IndexError: | |
boleto.drawBoletoCarneDuplo( | |
listaDadosCaixa[i] | |
) | |
boleto.save() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment