Post

QR Generator

Este script consiste en crear un codigo QR con el mensaje que desees.

Lo que hace es básicamente crear una imagen png con el código QR a escanear.

1
2
3
4
5
import qrcode

data="Inserte su mensaje para dedicar aqui"
img = qrcode.make(data=data)
img.save("Abrir con cuidado!.png")

image

This post is licensed under CC BY 4.0 by the author.