Skip to content

Instantly share code, notes, and snippets.

@fchevitarese
Created October 27, 2015 12:37
Show Gist options
  • Save fchevitarese/90d8a505c972c560f63c to your computer and use it in GitHub Desktop.
Save fchevitarese/90d8a505c972c560f63c to your computer and use it in GitHub Desktop.
tryboleto.py
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