Skip to content

DanTheMan2000/qrcode

 
 

Repository files navigation

Module QRCode

Build Status PyPI version

A QRCode Widget.

Install

pip install kivy-garden.qrcode

Usage

Python:

from kivy_garden.qrcode import QRCodeWidget
parent.add_widget(QRCodeWidget(data="Kivy Rocks"))

kv:

#:import QRCodeWidget kivy_garden.qrcode

BoxLayout:
    orientation: 'vertical'
    Button:
        text: 'press to change qrcode'
        on_release: qr.data = "Kivy Rocks!"
    QRCodeWidget:
        id: qr
        data: 'Hello World'

Contribute

Pull requests are welcome, simply make sure tests are passing via:

make test

About

Qrcode generator

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 75.2%
  • Makefile 22.7%
  • Shell 2.1%