mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-24 04:21:12 +00:00
7 lines
130 B
Python
7 lines
130 B
Python
import qrcode
|
|
|
|
link = input("Paste Your URL Here: ")
|
|
img = qrcode.make(link)
|
|
name_img = input("Name of img: ")
|
|
img.save(name_img)
|