Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 23, 2022 12:32 am GMT

Generate a QR Code with Python

Prerequisites: Python fundamentals
Versions: Python 3.10, qrcode 7.3.1, Pillow 9.2.0
Read Time: 40 minutes

Introduction

Have you ever wondered how QR codes work or how procedural images are generated? Have you ever wanted to send someone a website link in a much cooler way? If you said yes to any of these questions, you're in luck!

In this quick tutorial, we will learn how to create a QR code in Python with qrcode, pillow, and just five lines of code.

Let's jump in!

QR example

What Is a QR Code?

The QR code, short for Quick Response code, was originally invented in 1994 by a Japanese tech company. It is a 2D barcode containing black patterns on a white background. However, this is no ordinary scribble: QR codes are capable of storing huge amounts of data in a deceivingly small amount of space. These black rectangles can store links, text, basically anything you want... and can be accessed simply by scanning from any mobile device!

A QR code is important since it gives users a simple way to access something on a non-conventional source (e.g., on a piece of paper). Putting a QR code on a piece of paper is a far better and faster experience for the user than placing a website link. Due to this, QR codes are now becoming more commonly used than UPC barcodes and are found on restaurant menus, business cards, and even Superbowl ads!

Enough about QR codes, let's learn how to create one!

Setting Up

First, go to the Python code editor of your choice (we recommend VS Code), and create a new file called qr_code.py. This is where we will be writing our code.

Note: You can call your file any name except qrcode.py. This is because qrcode.py is a file that already exists as part of the qrcode library that we will use, and calling your file that will overwrite the library functions.

To start, we need to install the two libraries:

  • The qrcode library: This library lets us perform all of our QR code related operations.
  • The pillow library: This library helps us process and save images.

To install qrcode and pillow, run this command inside the VS Code terminal:

pip install qrcode pillow

For this tutorial, we are using qrcode version 7.3.1 and Pillow version 9.2.0.

Next, add this line of code to the first line of qr_code.py:

import qrcode

This line of code makes sure that the two libraries can be used in the rest of our code, since Python code runs from top to bottom in a file. We just need to import qrcode, because pillow is implicitly imported.

Creating the QR Code

First, we want a link that we want to showcase. Let's use a classic YouTube video.

We can store this YouTube URL into a variable called website_link:

website_link = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'

Next, we want to create an instance of qrcode. Since it's a Python library, we can call the package constructor to create a qrcode object, customized to our specifications.

In this example, we will create a QR code with a version of 1, and a box size and border size of 5.

qr = qrcode.QRCode(version = 1, box_size = 5, border = 5)
  • The version parameter is an integer from 1 to 40 that controls the size of the QR code.
  • The box_size parameter controls how many pixels each box of the QR code is.
  • The border parameter controls how many boxes thick the border should be.

As an exercise, try taking in these parameters as input, and explaining to the user how to set this up, so they can create the QR code to their own specifications.

Visit documentation for more information about the parameters in qrcode.QRCode(...).

Then, the data (specifically, the link we specified before) is added to the QR code, using .add_data(). The QR code is then generated using .make():

qr.add_data(website_link)qr.make()

Finally, we save this created QR code in an img pillow object using qr.make_image():

img = qr.make_image(fill_color = 'black', back_color = 'white')
  • Setting the line color fill_color to black.
  • Setting the background color back_color to white.

Finally, we have to store and save the file. We can do this using pillow's save() command. We specify the file name inside the brackets, which is youtube_qr.png in our case.

img.save('youtube_qr.png')

Now we are done! Heres the whole code:

import qrcodewebsite_link = 'https://www.youtube.com/watch?v=dQw4w9WgXcQ'qr = qrcode.QRCode(version = 1, box_size = 5, border = 5)qr.add_data(website_link)qr.make()img = qr.make_image(fill_color = 'black', back_color = 'white')img.save('youtube_qr.png')

You should see the youtube_qr.png image pop up on the left-hand side of VS Code, and you can open it to see what it looks like.

QR example

You can add this QR code to anywhere you like, on your website or in an email!

Improvements

To improve this, we could do a couple of things:

  • Allow the website link to be typed in using input() function.
  • Allow users to customize the QR code generated.
  • Automate the process to create multiple QR codes.
  • Include more functions (or object parameters) of the qrcode library.
  • Try changing the colors and styles of the generated QR codes using different drawer modules and fill colors.
  • Use an application library (like Tkinter) to add a user interface.
  • Check out other QR code libraries like pyqrcode.

More Resources


Original Link: https://dev.to/codedex/generate-a-qr-code-with-python-386m

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To