File: speedy.py

package info (click to toggle)
python-qrcode 5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 224 kB
  • ctags: 179
  • sloc: python: 1,317; makefile: 4
file content (8 lines) | stat: -rw-r--r-- 110 bytes parent folder | download
1
2
3
4
5
6
7
8
import string
import qrcode

qr = qrcode.QRCode()

qr.add_data(string.letters*13)
qr.make()
print(qr.version)