In this blog post, we're going to see the demonstration of QR code Generation with the help of few python lines. Before Starting Let's Understand What is a QR code and why it is needed?.
What is QR Code and What is the need for QR Code?
A QR code stands for quick response code. It is a type of matrix barcode (or two-dimensional barcode). A QR code consists of black squares arranged in a square grid on a white background, which can be read by an imaging device such as a camera, and processed using Reed–Solomon error correction until the image can be appropriately interpreted.
The Quick Response system became popular outside the automotive industry due to its fast readability and greater storage capacity compared to standard UPC barcodes. Applications include product tracking, item identification, time tracking, document management, and general marketing
This is the QR Code of my YouTube Channel You can scan it to check!
Implementation
To generate a QR code we are going to use two libraries PyQRCode and pypng libraries.
You need to install them first on your local device by command:
#For Windows
pip install PyQRCode pypng
After the installation of these two modules. let's use them by importing.
import pyqrcode
data = "Enter the link you want to store in QR Image"
image = pyqrcode.create(data)
image.png("image_name.png",scale=8)
Video Tutorial
Conclusion
The scale parameter tells you the size/Resolution of the png image.
The above QR code is of scale=8
So, This is how you can Generate QR Code with 3 - 4 Lines of Code in Python. I hope you Liked This article.