QR Code Generator using Python || Python project || c4rcoding

Published: 12 May 2023
on channel: C 4r Coding
94
17

#python #pythonprojects #pythonprogramming #pythontutorial #pythonforbeginners #c4rcoding



------------Project Code------------

print ("-----QR code generator-----")

import qrcode
import image

qr = qrcode.QRCode(
version = 15, #version of qr code
box_size = 12, #size of the box where qr code will be displayed
border = 6
)
#input text or link anything you want
data = input("Enter text or Link: ")
qr.add_data(data)
qr.make(fit = True)
#you can use your own choice color
img = qr.make_image(fill = "black", back_color = "white")
img.save("qr.png")



#python #pythonprojects #pythonprogramming #pythontutorial #pythonforbeginners #c4rcoding


On this page of the site you can watch the video online QR Code Generator using Python || Python project || c4rcoding with a duration of hours minute second in good quality, which was uploaded by the user C 4r Coding 12 May 2023, share the link with friends and acquaintances, this video has already been watched 94 times on youtube and it was liked by 17 viewers. Enjoy your viewing!