Metadata-Version: 1.1
Name: Flask-QRcode
Version: 0.2.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.dev@gmail.com
License: MIT
Description: Flask-QRcode
        ============
        
        A simple Flask extension to render QR codes on the template
        
        ![](QRcode.png)
        
        ##Installation
            
        ```
        pip install Flask-QRcode
        ```
        
        ##Basic Usage:
        
        ###Extend the app:
        
        ```
        from flask.ext.qrcode import QRcode
        QRcode(app)
        # [...]
        ```
        
        ###Then use it within your templates:
        
        ####Basic usage:
        
            {{ qrcode(STRING_TO_ENCODE) }}
            
        ###More examples:
        [Examples folder](https://github.com/marcoagner/Flask-QRcode/tree/master/examples)
        
        This will render the given string as a QR code image.
        
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
