Create QR Code using Python||qrcode module|| For code check description

Опубликовано: 04 Апрель 2026
на канале: dev. ZRN
90
1

code:

import qrcode #importing the QR module
data='https://www.tutorialspoint.com' # storing url in data
filename="site.png"
img=qrcode.make(data) # create qrcode using make()
img.save('abc') # saving image

#shorts #programming #python