Skip to content

Commit 2e0a94e

Browse files
authored
Text_to_QR
This program of python helps the user to convert their message through the medium of QRcode instead of textual messaging
1 parent 8664ae7 commit 2e0a94e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Diff for: Text_to_QR.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import qrcode
2+
print(f"Enter the text that you want to convert to QRcode : ")
3+
text = str(input(""))
4+
img = qrcode.make(text)
5+
img.save('qrcode.jpg')
6+
print("Your qrcode is save as 'qrcode.jpg'")

0 commit comments

Comments
 (0)