mirror of
https://github.com/metafy-social/python-scripts.git
synced 2025-02-25 01:18:40 +00:00
commit
590e66d7ec
scripts/QR_code_generator
8
scripts/QR_code_generator/README.md
Normal file
8
scripts/QR_code_generator/README.md
Normal 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`
|
6
scripts/QR_code_generator/qr_code.py
Normal file
6
scripts/QR_code_generator/qr_code.py
Normal 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)
|
Loading…
x
Reference in New Issue
Block a user