Merge pull request #84 from akashJainAJ11/master

QR code files ADDED
This commit is contained in:
Advaita Saha 2022-10-03 16:50:47 +05:30 committed by GitHub
commit 590e66d7ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,8 @@
## QR code files ADDED #84
## Usage
it generate qr code for any URL
- Clone the repo
- download the requirements
- run `python qr_code.py`

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)