| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A concise Flask extension to easily render QR codes on Jinja2 templates using python-qrcode
You can read the full documentation here.
pip install Flask-QRcode
from flask_qrcode import QRcode # [...] QRcode(app) # [...]
<img src="{{ qrcode(STRING_TO_ENCODE) }}">
For more examples, just run the sample application in this repository.
Thank you for considering contributing to this package.
As this is a simple package, the process is pretty straightforward...
*It's highly recommended that your contribution either creates a new feature, fixes something OR refactors the code and does not mix these (e.g. one PR fixing some existent feature and refactoring non-related code).
pip install -e . # for installing flask_qrcode on editable mode
pip install -e . # for installing flask_qrcode on editable mode
python setup.py test # on package's root dir
| Back | FazBrowse Home | New Git URL |