mirror of https://github.com/tp4a/teleport
9 lines
110 B
Python
9 lines
110 B
Python
![]() |
import string
|
||
|
import qrcode
|
||
|
|
||
|
qr = qrcode.QRCode()
|
||
|
|
||
|
qr.add_data(string.letters*13)
|
||
|
qr.make()
|
||
|
print(qr.version)
|