Last active 1739983053

Revision 9e1f498ce4ff38852153e6c8b484cfb291016ce6

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 SVG file naming "zcwqrcode.svg"
url.svg("zcwqrcode.svg", scale = 8)