7 lines
130 B
Python
Raw Normal View History

2022-10-03 12:38:43 +05:30
import qrcode
link = input("Paste Your URL Here: ")
img = qrcode.make(link)
name_img = input("Name of img: ")
img.save(name_img)