6 lines
81 B
Python
6 lines
81 B
Python
import qrcode
|
|
|
|
img = qrcode.make("https://qleap.dev")
|
|
img.save("qr.png", "PNG")
|
|
|