QR code in Python Language
__________________________________________
import pyqrcode
name = ' hi there '
k = pyqrcode.create(name)
k.png('test.png',scale = 10)
import os
os.system('test.png')
___________________________________________
Copy and paste this source code to your python IDE
Very nice 👍
ReplyDelete