Metadata-Version: 2.1
Name: pyzxing
Version: 0.1
Summary: Python wrapper for ZXing JAVA library
Home-page: https://github.com/ChenjieXu/pyzing
Author: Chenjie Xu
Author-email: cxuscience@gmail.com
License: MIT
Description: # pyzxing
        
        python-zxing does not work properly and is out of maintenance. So I decide to create this repository so that Pythoneer can take advantage of zxing library with minimum cost.
        
        ## Install Zxing Module
        
        ```bash
        git submodule init
        git submodule update
        cd zxing
        mvn install -DskipTests
        cd javase
        mvn -DskipTests package assembly:single
        ```
        
        ## Quick Start
        
        ```python
        from pyzxing import BarCodeReader
        reader = BarCodeReader()
        output = reader.decode('/PATH/TO/FILE')
        print(output)
        ```
        
        
Keywords: zxing
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Description-Content-Type: text/markdown
