Metadata-Version: 1.0
Name: qrkit
Version: 0.1.0
Summary: Simple QR code kit.
Home-page: http://github.com/benoitc/qrkit
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: qrqit
        -----
        
        Simple binding of qrencode library released under the public domain
        extracted from qurl.
        
        
        Requirements
        ++++++++++++
        
        To build the binding you will need to install:
        
         - `libqrencode-dev <apt://libqrencode-dev>`_
         - `Cython <apt://cython>`_
        
        To use it you will need:
        
         - `Python Imaging Librairy <apt://python-imaging>`_
        
        
        Installation
        ++++++++++++
        
        Do one of this command to install it from pypi
        
        ::
        
            pip install qrkit
        
        or::
        
            easy_install qrkit
        
        From code::
           
           $ python setup.py install
        
        
        Simple usage
        ++++++++++++
        
        ::
            
            from qrimage.qrimg import encode_to_img
            
            img = encode_to_img('http://www.python.org/', width=300, border=10)
            img.save('qrimage.png', 'PNG', quality=80)
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
