custom qr code by python
Hello everyone welcomes to The Hackerzspot you want to create custom Qr code don't worry. This is the right place for you. In this article, I am have gone to show you how to create a custom QR code with just 5 lines of python programming language.
Qr stands for Quick Response.
Qr code is nothing but it is a matrix barcode and it is a machine-readable code that contains information about the product where the QRcode label is attached.
Qr code consists of a black grid in white background. It can read by handheld scanning machines at stores and many QR code scanning apps available for android, ios, and windows.
Requirements for custom Qr code
- Clear mind
- Python compiler
import pyqrcode
url='https://thehackerzspot.blogspot.com/'
qr=pyqrcode.create(url)
qr.svg('qrcode.svg',scale=10)
print(qr)
url='paste your link'
qr.svg('qrcode.svg',scale=10)
Comments
Post a Comment