Naposledy aktivní 1739983053

Revize 3b98084f72236f9ec68aa521241a131a9c917ca5

qrcodepy.md Raw

pip install pyqrcode

How to create a QR Code with Python:

import pyqrcode 
from pyqrcode import QRCode 
  
# String (URL) to make into QR code 
s = "https://zipcodewilmington.com"

# Generate QR code 

url = pyqrcode.create(s) 

# Create and save the png file naming "myqr.png"
url.svg("zcwqrcode.svg", scale = 8)