QR CODE IN 3 LINES OF PYTHON CODE | Generate And Access QR Code Easily

QR CODE IN 3 LINES OF PYTHON CODE | Generate And Access QR Code Easily

Introduction

In this blog, we are 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!

youtubechannel.png

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 = input("Enter the link you want to store in QR Image")
image = pyqrcode.create(data)
image.png("image_name.png",scale=8)

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 your personal QR Code. I hope you Liked This article.

If you liked it, Please Support Me

RESOURCES

Did you find this article valuable?

Support Nishant Gour by becoming a sponsor. Any amount is appreciated!