python-scripts/scripts/QR_code_generator/qr_code.py
2022-10-03 12:38:43 +05:30

7 lines
130 B
Python

import qrcode
link = input("Paste Your URL Here: ")
img = qrcode.make(link)
name_img = input("Name of img: ")
img.save(name_img)