Skip to content

Commit 358f2e0

Browse files
authored
Add files via upload
1 parent affeec5 commit 358f2e0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

qr_code_generator.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import qrcode
2+
3+
site_url = input('Enter the url of the website: ')
4+
5+
img = qrcode.make(site_url)
6+
7+
img.save('qr.png')

0 commit comments

Comments
 (0)