QR Code with Python

To get started open your terminal or command prompt and write a command – pip install pyqrcode

# Import pyqrcode
import pyqrcode

number = "8587992208"
qcode=pyqrcode.create(number)
qcode.png("tmb.png", scale=8)
qcode.show()

#Output

Aman Kharwal
Aman Kharwal

I'm a writer and data scientist on a mission to educate others about the incredible power of data📈.

Articles: 1498

Leave a Reply