Metadata-Version: 1.1
Name: Flask-QRcode
Version: 0.8.0
Summary: A simple flask extension to render QR codes on template
Home-page: https://github.com/marcoagner/Flask-QRcode
Author: Marco Agner
Author-email: marcoagner@agner.io
License: MIT
Description: Flask-QRcode
        ============
        
        A simple Flask extension to render QR codes on the template using [python-qrcode](https://github.com/lincolnloop/python-qrcode)
        
        ![](QRcode.png)
        
        ##Installation
            
        ```
        pip install Flask-QRcode
        ```
        
        ##Usage:
        
        ###Extend the app:
        
        ```
        from flask.ext.qrcode import QRcode
        # [...]
        QRcode(app)
        # [...]
        ```
        
        ###Then use it within your templates:
        
        ####Basic usage:
        
            <img src="{{ qrcode(STRING_TO_ENCODE) }}">
            
        ###More examples:
        [Sample Application](https://github.com/marcoagner/Flask-QRcode/tree/master/sample_application)
        
        ##Contributing:
        
        It's awesome that you want to contribute to this package. Thanks in advance!
        
        The process is pretty stratighforward...
        
        1. Fork this repository
        2. Checkout from Master with a feature branch (prefer naming it related to what is being contributed)
        3. Do your magic
          * Install the dependencies:
          ```
          pip install -r requirements.txt
          pip install -e . # for installing flask_qrcode on editable mode
          ```
        4. Don't be shy and... Pull Request!
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
