Skip to content

Commit

Permalink
Fix problems in python qr creation post
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanalemunioz committed Oct 24, 2024
1 parent 10aa69d commit c067563
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/blog/crear-qr-de-afip-en-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ qr_code_data = {
}


# Preparamos el texto para el qr en base a https://www.afip.gob.ar/fe/qr/especificaciones.asp
# Preparamos el texto para el qr en base a https://www.afip.gob.ar/fe/qr/documentos/QRespecificaciones.pdf
qr_code_text = 'https://www.afip.gob.ar/fe/qr/?p=' + base64.urlsafe_b64encode(json.dumps(qr_code_data).encode('utf-8')).decode('utf-8')

qrcode = segno.make_qr(qr_code_text)
Expand All @@ -54,4 +54,4 @@ qrcode.save('qr-afip.png') # o podemos guardarlo como un archivo
![QR de AFIP](/images/blog/qr-afip.png)


Ya tenemos el QR listo para nuestro comprobante. Ahora podemos [crear el PDF](/blog/crear-factura-electronica-de-afip-en-python/)
Ya tenemos el QR listo para nuestro comprobante. Ahora podemos [crear el PDF](/blog/crear-pdf-de-afip-en-python/)

0 comments on commit c067563

Please sign in to comment.