Metadata-Version: 2.1
Name: dbr
Version: 6.0.0
Summary: Dynamsoft Barcode Reader Python project
Home-page: https://www.dynamsoft.com/Products/Dynamic-Barcode-Reader.aspx
Author: Dynamsoft
Author-email: support@dynamsoft.com
License: https://www.dynamsoft.com/Products/barcode-reader-license-agreement.aspx
Keywords: barcode DataMatrix QRCode 1D PDF417
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: opencv-python

# Dynamsoft Barcode Reader for Windows

[Dynamsoft Barcode Reader SDK](https://www.dynamsoft.com/Products/Dynamic-Barcode-Reader.aspx) enables you to efficiently embed barcode reading functionality in your web, desktop and mobile application using just a few lines of code. This can save you months of added development time and extra costs. With our SDK, you can create high-speed and reliable barcode scanner software to meet your business needs.

## Supported Barcode Types
Code 39, Code 93, Code 128, Codabar, Interleaved 2 of 5, EAN-8, EAN-13, UPC-A, UPC-E, Industrial 2 of 5, QR code, Datamatrix and PDF417 .

## How to Install and Use the SDK
Install Dynamsoft Barcode Reader:
```bash
pip install dbr
```
Invoke the API:
```python
import dbr
formats = 0x3FF | 0x2000000 | 0x8000000 | 0x4000000 # 1D, QRCODE, PDF417, DataMatrix
results = dbr.decodeFile(fileName, formats, 'CUSTOM')
```

## Sample Code
https://github.com/dynamsoft-dbr/python-barcode-windows

## Screenshot
![webcam barcode reader with OpenCV Python](http://www.codepool.biz/wp-content/uploads/2017/04/python-barcode-reader.png)

## Contact 
support@dynamsoft.com









