Metadata-Version: 1.1
Name: django-qrcode2
Version: 0.4.3
Summary: qrcode filters and views for django
Home-page: UNKNOWN
Author: Your Name
Author-email: yourname@example.com
License: BSD License
Description: =====
        django-qrcode2
        =====
        
        提供qrcode相关的filter和view，用pillow在本地生成
        
        Quick start
        -----------
        1. Install::
        
            pip install django_qrcode2
        
        
        2. Add "qrcode2" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'qrcode2',
            ]
        
        3. [Optional] Include the qrcode2 URLconf in your project urls.py like this::
        
            url(r'^qrcode/', include('qrcode2.urls')),
        
        4. No migration needed
        
        5. Add filter to template like this::
        
            {% load qrcode2 %}
        
            <!-- if an view with name 'qrcode' is provided, 'src' will be an url, otherwise it's an base64 data blob -->
            <img src="{{ 'some text' | qrcode_src }}">
        
            <!-- insert an <img> with template inclusion -->
            {% include 'qrcode2/img.html' with text='hello' %}
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
