QR code files ADDED

This commit is contained in:
Akash Jain 2022-10-03 12:38:43 +05:30
parent f8b0890194
commit 42c878aa61
2 changed files with 6 additions and 0 deletions

View File

View File

@ -0,0 +1,6 @@
import qrcode
link = input("Paste Your URL Here: ")
img = qrcode.make(link)
name_img = input("Name of img: ")
img.save(name_img)