python-scripts/scripts/QR_code_generator/qr_code.py

7 lines
130 B
Python
Raw Normal View History

2022-10-03 07:08:43 +00:00
import qrcode
link = input("Paste Your URL Here: ")
img = qrcode.make(link)
name_img = input("Name of img: ")
img.save(name_img)