How to create a basic QR code in python

How to create a basic QR code in python

In easy step you generate your own QR.

ยท

1 min read

If you need a qr code generator so you not go to google and search qr code qenerator you easily code and generate a customize qr code.๐Ÿ˜ถโ€๐ŸŒซ๏ธ

HOW TO CREATE

SYNTAX๐Ÿ‘‡

import qrcode
img = qrcode.make("Thanks for reading my blog")
img.save("qr.png")

SCAN THE QRCODE.๐Ÿ˜€

Explain the Syntax

In the import QR code it's a library exist in python ti create qrcode

qrcode make its a function to make a qrcode

img.save its used for save a img of qrcode into a computer.

ย