Metadata-Version: 1.2
Name: elaphe3
Version: 0.2.0
Summary: Generates various barcodes using barcode.ps and pillow.
Home-page: https://github.com/graingert/elaphe
Author: Yasushi Masuda
Author-email: whosaysni@gmail.com
Maintainer: Thomas Grainger
Maintainer-email: elaphe3@graingert.co.uk
License: New BSD
Description: ======
        Elaphe
        ======
        
        Elaphe is a python binding of Barcode Writer In Pure PostScript
        (http://www.terryburton.co.uk/barcodewriter/).
        It generates barcode symbol as PostScript code fragment using
        BWIPP. The generated code is then embedded in encapsulated
        PostScript image which can be handled by PIL.
        
        
        Prerequisites
        ==============
        
        * Python 2.7 or later (functional decorators, ternary operator, and 
          generator expressions are used).
        
          .. note::
        
            Except ``setup.py test``, code may still work on 2.5-2.6.
            
        * If you want to render barcode into bitmap image, EpsImagePlugin of
          Python Imaging Library (http://www.pythonware.com/products/pil) or
          Pillow is required. Note that EpsImagePlugin requires Ghostscript is
          correctly installed.
        
        
        Simple Usage
        =============
        
        The following example::
        
          >>> from elaphe import barcode
          >>> barcode('qrcode',
          ...         'Hello Barcode Writer In Pure PostScript.',
          ...         options=dict(version=9, eclevel='M'), 
          ...         margin=10, data_mode='8bits'))   # Generates PIL.EpsImageFile instance
          <PIL.EpsImagePlugin.EpsImageFile ... at ...>
          >>> _.show() # Show rendered bitmap
        
        will invoke some viewer which shows a QRcode symbol with 10px margin.
        
        Remember, barcode() returns PIL image object.
        
        
        0.2.0 (2017-05-03)
        ------------------
        
        - Update to BWIPP to 2017-04-04.
        - Update trove
        
        
        0.1.1 (2016-05-25)
        ------------------
        
        - Fix packaging.
        - Switch to zest.releaser.
        
        
        0.1.0 (2016-05-24)
        ------------------
        
        - First version of elaphe3 that can be installed from PyPI
        
Keywords: barcode convert postscript image graphics
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD 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 :: Software Development :: Libraries :: Python Modules
