Dynamsoft Barcode Reader SDK for Python
====================================================
|version| |python| |pypi|
.. |version| image:: https://img.shields.io/pypi/v/dynamsoft_barcode_reader_bundle?color=orange
.. |python| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue
.. |pypi| image:: https://img.shields.io/pypi/dm/dynamsoft_barcode_reader_bundle
What You Should Know About Dynamsoft Barcode Reader
---------------------------------------------------
|trial|
.. |trial| image:: https://img.shields.io/badge/Get-30--day%20FREE%20Trial-blue
:target: https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&package=python
`Dynamsoft Barcode Reader SDK <https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi>`_
enables you to efficiently embed barcode reading functionality in your
web, desktop or mobile application using just a few lines of code.
Saving you months of added development time and resources, our SDK can
create high-speed and reliable barcode scanner software applications to
meet your business needs.
About Python Barcode SDK
-------------------------
The Python Barcode SDK is a wrapper for Dynamsoft C++ Barcode SDK. It comes with all the general
features of Dynamsoft Barcode Reader, bringing convenience for Python developers.
Notice: Package Renamed and Updated
-----------------------------------
`dynamsoft_barcode_reader_bundle` is the successor to the `dbr` package, starting from version 10.
This new version introduces significant architectural improvements and a redesigned API to integrate with
`DynamsoftCaptureVision (DCV) <https://www.dynamsoft.com/capture-vision/docs/core/introduction/index.html?lang=python>`_ architecture,
which is newly established to aggregate the features of functional products powered by Dynamsoft.
Version
-------
- 10.5.2100
Supported Platforms
-------------------
- Windows x64
- Linux(x64, ARM64)
- macOS (10.15+)
Supported Python Versions
-------------------------
- Python3.13
- Python3.12
- Python3.11
- Python3.10
- Python3.9
- Python3.8
Installation
------------
pip install dynamsoft_barcode_reader_bundle
Supported Symbologies
---------------------
- Linear Barcodes (1D) :
- Code 39 *(including Code 39 Extended)*
- Code 93
- Code 128
- Codabar
- Interleaved 2 of 5
- EAN-8
- EAN-13
- UPC-A
- UPC-E
- Industrial 2 of 5
- MSI Code
- Code 11
- 2D Barcodes :
- QR Code *(including Micro QR Code)*
- Data Matrix
- PDF417 *(including Micro PDF417)*
- Aztec Code
- MaxiCode *(mode 2-5)*
- DotCode
- Patch Code
- Pharmacode
- GS1 Composite Code
- GS1 DataBar :
- Omnidirectional
- Truncated
- Stacked
- Stacked Omnidirectional
- Limited
- Expanded
- Expanded Stacked
- Postal Codes :
- USPS Intelligent Mail
- Postnet
- Planet
- Australian Post
- UK Royal Mail
Quick Start
-----------
.. code-block:: python
from dynamsoft_barcode_reader_bundle import *
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=pypi
license_key = "Input your own license"
image = r"Please input your own image path"
LicenseManager.init_license(license_key)
cvr = CaptureVisionRouter()
try:
capturedResult = cvr.capture(image,EnumPresetTemplate.PT_READ_BARCODES.value)
items = capturedResult.get_items()
for i in range(len(items)):
barcode = items[i]
print("Barcode Format : ")
print(barcode.get_format_string())
print("Barcode Text : ")
print(barcode.get_text())
print("-------------")
except Exception as e:
print(e)
Sample Code
------------
https://github.com/Dynamsoft/barcode-reader-python-samples
Documentation
-----------------
- `API <https://www.dynamsoft.com/barcode-reader/docs/server/programming/python/api-reference/?utm_source=pypi>`_
- `User Guide <https://www.dynamsoft.com/barcode-reader/docs/server/programming/python/user-guide.html?utm_source=pypi>`_
- `Release Notes <https://www.dynamsoft.com/barcode-reader/docs/server/programming/python/release-notes/python-10.html?utm_source=pypi>`_
Contact Us
----------
support@dynamsoft.com
Raw data
{
"_id": null,
"home_page": "https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi",
"name": "dynamsoft-barcode-reader-bundle",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Dynamsoft",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/1a/a5/5b7dbc116f1f5c77882f86f38b2906177cf71c06625b7bbcdb201e3a0709/dynamsoft_barcode_reader_bundle-10.5.2100.tar.gz",
"platform": null,
"description": "Dynamsoft Barcode Reader SDK for Python\n====================================================\n|version| |python| |pypi| \n\n.. |version| image:: https://img.shields.io/pypi/v/dynamsoft_barcode_reader_bundle?color=orange\n.. |python| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue\n.. |pypi| image:: https://img.shields.io/pypi/dm/dynamsoft_barcode_reader_bundle\n\n\nWhat You Should Know About Dynamsoft Barcode Reader\n---------------------------------------------------\n|trial|\n\n.. |trial| image:: https://img.shields.io/badge/Get-30--day%20FREE%20Trial-blue\n :target: https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&package=python\n\n`Dynamsoft Barcode Reader SDK <https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi>`_ \nenables you to efficiently embed barcode reading functionality in your\nweb, desktop or mobile application using just a few lines of code.\nSaving you months of added development time and resources, our SDK can\ncreate high-speed and reliable barcode scanner software applications to\nmeet your business needs.\n\nAbout Python Barcode SDK\n-------------------------\nThe Python Barcode SDK is a wrapper for Dynamsoft C++ Barcode SDK. It comes with all the general\nfeatures of Dynamsoft Barcode Reader, bringing convenience for Python developers.\n\n\nNotice: Package Renamed and Updated\n-----------------------------------\n`dynamsoft_barcode_reader_bundle` is the successor to the `dbr` package, starting from version 10.\nThis new version introduces significant architectural improvements and a redesigned API to integrate with\n`DynamsoftCaptureVision (DCV) <https://www.dynamsoft.com/capture-vision/docs/core/introduction/index.html?lang=python>`_ architecture,\nwhich is newly established to aggregate the features of functional products powered by Dynamsoft.\n\n\nVersion\n-------\n\n- 10.5.2100\n\nSupported Platforms\n-------------------\n\n- Windows x64\n\n- Linux(x64, ARM64)\n\n- macOS (10.15+)\n\nSupported Python Versions\n-------------------------\n- Python3.13\n\n- Python3.12\n\n- Python3.11\n\n- Python3.10\n\n- Python3.9\n\n- Python3.8\n\nInstallation\n------------\n\n pip install dynamsoft_barcode_reader_bundle\n\nSupported Symbologies\n---------------------\n\n- Linear Barcodes (1D) :\n\n - Code 39 *(including Code 39 Extended)*\n - Code 93\n - Code 128\n - Codabar\n - Interleaved 2 of 5\n - EAN-8\n - EAN-13\n - UPC-A\n - UPC-E\n - Industrial 2 of 5\n - MSI Code\n - Code 11\n\n- 2D Barcodes :\n\n - QR Code *(including Micro QR Code)*\n - Data Matrix\n - PDF417 *(including Micro PDF417)*\n - Aztec Code\n - MaxiCode *(mode 2-5)*\n - DotCode\n\n- Patch Code\n\n- Pharmacode\n\n- GS1 Composite Code\n\n- GS1 DataBar :\n\n - Omnidirectional\n - Truncated\n - Stacked\n - Stacked Omnidirectional\n - Limited\n - Expanded\n - Expanded Stacked\n\n- Postal Codes :\n\n - USPS Intelligent Mail\n - Postnet\n - Planet\n - Australian Post\n - UK Royal Mail\n\nQuick Start\n-----------\n.. code-block:: python\n\n from dynamsoft_barcode_reader_bundle import *\n\n # Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense/?product=dbr&utm_source=pypi\n license_key = \"Input your own license\"\n image = r\"Please input your own image path\"\n LicenseManager.init_license(license_key)\n cvr = CaptureVisionRouter()\n\n try:\n \n capturedResult = cvr.capture(image,EnumPresetTemplate.PT_READ_BARCODES.value)\n\n items = capturedResult.get_items()\n\n for i in range(len(items)):\n barcode = items[i]\n print(\"Barcode Format : \")\n print(barcode.get_format_string())\n print(\"Barcode Text : \")\n print(barcode.get_text()) \n print(\"-------------\")\n except Exception as e:\n print(e)\n\n\nSample Code\n------------\nhttps://github.com/Dynamsoft/barcode-reader-python-samples\n\nDocumentation\n-----------------\n\n- `API <https://www.dynamsoft.com/barcode-reader/docs/server/programming/python/api-reference/?utm_source=pypi>`_\n- `User Guide <https://www.dynamsoft.com/barcode-reader/docs/server/programming/python/user-guide.html?utm_source=pypi>`_\n- `Release Notes <https://www.dynamsoft.com/barcode-reader/docs/server/programming/python/release-notes/python-10.html?utm_source=pypi>`_\n\n\nContact Us\n----------\n\nsupport@dynamsoft.com\n",
"bugtrack_url": null,
"license": null,
"summary": "Dynamsoft Barcode Reader SDK for Python",
"version": "10.5.2100",
"project_urls": {
"Homepage": "https://www.dynamsoft.com/barcode-reader/overview/?utm_source=pypi"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f5deae561507a8dc6fd8b81721c91ba2d0ac2e931df5168f9431598257bbb0dd",
"md5": "c7dc298d678ac070ac30158176c0ae3e",
"sha256": "860c451e927ae3c0bd873be8ec6c23fd95934e1408601d6a9b8afe7a54ca69f7"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-macosx_12_0_universal2.whl",
"has_sig": false,
"md5_digest": "c7dc298d678ac070ac30158176c0ae3e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 29053910,
"upload_time": "2024-12-05T07:12:34",
"upload_time_iso_8601": "2024-12-05T07:12:34.257897Z",
"url": "https://files.pythonhosted.org/packages/f5/de/ae561507a8dc6fd8b81721c91ba2d0ac2e931df5168f9431598257bbb0dd/dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-macosx_12_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d71c186e9791d16da5944be8ed90a18ac8e981d634ba3bebd465a771323bb720",
"md5": "e99740b37a4950839a4766143685c2df",
"sha256": "0b902bb3e2383e72f757dafb4507a89b6a3ce80b78b544a44b58f118ead36dc1"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e99740b37a4950839a4766143685c2df",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 18539630,
"upload_time": "2024-12-05T07:12:39",
"upload_time_iso_8601": "2024-12-05T07:12:39.366643Z",
"url": "https://files.pythonhosted.org/packages/d7/1c/186e9791d16da5944be8ed90a18ac8e981d634ba3bebd465a771323bb720/dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b24b334aa6b9568b6c4d8c0b4b70e505c88fd60b40cf0450404ccb31bb40e17e",
"md5": "e0131c8d22b935a12066e245b51a9e43",
"sha256": "3654922bf0a2123eda4022dbc131333ee1faa1a10e2a6878ce7b57c73a2cb6a2"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e0131c8d22b935a12066e245b51a9e43",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 16895205,
"upload_time": "2024-12-05T07:12:44",
"upload_time_iso_8601": "2024-12-05T07:12:44.047711Z",
"url": "https://files.pythonhosted.org/packages/b2/4b/334aa6b9568b6c4d8c0b4b70e505c88fd60b40cf0450404ccb31bb40e17e/dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4011da0a6358d1bcbd673be8d887d0915fb43f85fd6348911696ca9cb844206",
"md5": "3078a1c20f40374720d34ebc963ebfc8",
"sha256": "89302582e0bafef24c449b4921a4eeca047186714e062d75abd7d444bcb26ef0"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "3078a1c20f40374720d34ebc963ebfc8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": null,
"size": 13437838,
"upload_time": "2024-12-05T07:12:48",
"upload_time_iso_8601": "2024-12-05T07:12:48.798331Z",
"url": "https://files.pythonhosted.org/packages/a4/01/1da0a6358d1bcbd673be8d887d0915fb43f85fd6348911696ca9cb844206/dynamsoft_barcode_reader_bundle-10.5.2100-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8836fa7834aa837ac489c5b92e5fb987778619be20c236a617e365afdbe68ddc",
"md5": "65d3663f73199c85dc7428ccb0902d59",
"sha256": "12921feae95e390eb0443f5d8c7170805b7eea0489453d71a8a1cd79e0a7793f"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-macosx_12_0_universal2.whl",
"has_sig": false,
"md5_digest": "65d3663f73199c85dc7428ccb0902d59",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 29054105,
"upload_time": "2024-12-05T07:12:54",
"upload_time_iso_8601": "2024-12-05T07:12:54.645367Z",
"url": "https://files.pythonhosted.org/packages/88/36/fa7834aa837ac489c5b92e5fb987778619be20c236a617e365afdbe68ddc/dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-macosx_12_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0cb2d0dca0d5804cb95e2caba8eb52ef9443a13ae7936d7bb28d4096c3fa7ed4",
"md5": "026d7476e34176addb496a8cad107196",
"sha256": "2d395b7a2c25ec8442602d8a32e7fa46701767c6a9148a2f3c026fd77f1b8fa7"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "026d7476e34176addb496a8cad107196",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 18594432,
"upload_time": "2024-12-05T07:12:59",
"upload_time_iso_8601": "2024-12-05T07:12:59.562279Z",
"url": "https://files.pythonhosted.org/packages/0c/b2/d0dca0d5804cb95e2caba8eb52ef9443a13ae7936d7bb28d4096c3fa7ed4/dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e43441c15de938be88bfbc0ae776f5066af6484d9d9ba4c323994253375f9387",
"md5": "bef12c8a8a4b5be4c1e30c17d81f38ea",
"sha256": "e8a657913a5a5787c38ef524354ea7389fc96e122469f5e50dbd3ff4dc791d2b"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "bef12c8a8a4b5be4c1e30c17d81f38ea",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 16949286,
"upload_time": "2024-12-05T07:13:04",
"upload_time_iso_8601": "2024-12-05T07:13:04.580860Z",
"url": "https://files.pythonhosted.org/packages/e4/34/41c15de938be88bfbc0ae776f5066af6484d9d9ba4c323994253375f9387/dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "122fa11ea777da86ffce3291d2f7b4fc64007285a90742182be763f198b24d2d",
"md5": "d98e4c63013606f91eae73c5455f6481",
"sha256": "5f0aa88326d2e5a5998e895cfc619df1d662f82d14a79b88b690c6b5ec453ade"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "d98e4c63013606f91eae73c5455f6481",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": null,
"size": 13437843,
"upload_time": "2024-12-05T07:13:08",
"upload_time_iso_8601": "2024-12-05T07:13:08.564494Z",
"url": "https://files.pythonhosted.org/packages/12/2f/a11ea777da86ffce3291d2f7b4fc64007285a90742182be763f198b24d2d/dynamsoft_barcode_reader_bundle-10.5.2100-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "068bd5a5ceef75ff2c6c55fc5c55b0c5d12f70db6c33fad07415f861b7ed0134",
"md5": "7171a4bc899726e6f78badca2ef72775",
"sha256": "b87bc3d5a4d9c90ca871e4a6d58c36d0f41d08e0f5b3daf2bcdf04d62e530283"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-macosx_12_0_universal2.whl",
"has_sig": false,
"md5_digest": "7171a4bc899726e6f78badca2ef72775",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 29057637,
"upload_time": "2024-12-05T07:13:14",
"upload_time_iso_8601": "2024-12-05T07:13:14.350531Z",
"url": "https://files.pythonhosted.org/packages/06/8b/d5a5ceef75ff2c6c55fc5c55b0c5d12f70db6c33fad07415f861b7ed0134/dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-macosx_12_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6badee51310d94aa197019faf1216403507180c1d8a128f057c5f8f6e58b95c7",
"md5": "2761290f9b418b47ea8e311d55f263a2",
"sha256": "6ae469e3fc5d13d6a310185410c4313746e94dd95a9651dc067e01ae46864e07"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "2761290f9b418b47ea8e311d55f263a2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 18619421,
"upload_time": "2024-12-05T07:13:19",
"upload_time_iso_8601": "2024-12-05T07:13:19.282162Z",
"url": "https://files.pythonhosted.org/packages/6b/ad/ee51310d94aa197019faf1216403507180c1d8a128f057c5f8f6e58b95c7/dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "79227024b25d3acfbd3a71a089239665580e25920a1c25f5653100203d46f81b",
"md5": "a0590772d525b1f2b7cd1da716fb3c62",
"sha256": "9b017d5e14999b153f067249d3aa0829a06ca75969c5e20d99947185c824f15d"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "a0590772d525b1f2b7cd1da716fb3c62",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 16971510,
"upload_time": "2024-12-05T07:13:24",
"upload_time_iso_8601": "2024-12-05T07:13:24.078312Z",
"url": "https://files.pythonhosted.org/packages/79/22/7024b25d3acfbd3a71a089239665580e25920a1c25f5653100203d46f81b/dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0692e99a21ebc89714e17b1cf8013a81660f6123aa0be3faeb33355b7401abab",
"md5": "7877420fe65873a89317841b92e6d31b",
"sha256": "8f60375b6051c1f76dbb51a3f69aa08cbda43bfe774f01f59bb415cefd441387"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "7877420fe65873a89317841b92e6d31b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": null,
"size": 13439162,
"upload_time": "2024-12-05T07:13:27",
"upload_time_iso_8601": "2024-12-05T07:13:27.693151Z",
"url": "https://files.pythonhosted.org/packages/06/92/e99a21ebc89714e17b1cf8013a81660f6123aa0be3faeb33355b7401abab/dynamsoft_barcode_reader_bundle-10.5.2100-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5680470c62744c10207acefe68ba7c2bbdb12d8f127ea83421949684b034ecbd",
"md5": "187a096278de8e5249e23667d47f4abc",
"sha256": "c0bc62a38535d8bdacfcc152940fcdbc4bc799931b0f9ff8359c6435fd0a32a4"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-macosx_12_0_universal2.whl",
"has_sig": false,
"md5_digest": "187a096278de8e5249e23667d47f4abc",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 29057018,
"upload_time": "2024-12-05T07:13:35",
"upload_time_iso_8601": "2024-12-05T07:13:35.456961Z",
"url": "https://files.pythonhosted.org/packages/56/80/470c62744c10207acefe68ba7c2bbdb12d8f127ea83421949684b034ecbd/dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-macosx_12_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6c7188b448714454bf2e4971390e1154b30124a541ce5ccf2e26852d04e24410",
"md5": "c0e8f23738e31d84748a0993d4e02b2b",
"sha256": "08ce37ec046cda922a5d176179ce5112f4d180248d92442d482b32b47270dee7"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "c0e8f23738e31d84748a0993d4e02b2b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 18618834,
"upload_time": "2024-12-05T07:13:40",
"upload_time_iso_8601": "2024-12-05T07:13:40.307462Z",
"url": "https://files.pythonhosted.org/packages/6c/71/88b448714454bf2e4971390e1154b30124a541ce5ccf2e26852d04e24410/dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0792eba6b576426674fae31c5f7540596283e339300136cf0b201d569e4928e1",
"md5": "543f81ac7ef89ac4d1761cb13950cf3a",
"sha256": "9fdd35f489f210396db65d236bd6e04a3b2f3b4de40d25132e642ae535a867c9"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "543f81ac7ef89ac4d1761cb13950cf3a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 16971153,
"upload_time": "2024-12-05T07:13:45",
"upload_time_iso_8601": "2024-12-05T07:13:45.258030Z",
"url": "https://files.pythonhosted.org/packages/07/92/eba6b576426674fae31c5f7540596283e339300136cf0b201d569e4928e1/dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "719ef9603f822f660b0fd4926ec718d4c87cc71fa74ba1eedf6448d3e46cc583",
"md5": "6905aae55e59291df18738d704561b93",
"sha256": "eccfbdb2b60e8f7ac3869d3c3dc2a5cb19a358457447c37304a42813b85165ce"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "6905aae55e59291df18738d704561b93",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": null,
"size": 13439175,
"upload_time": "2024-12-05T07:13:49",
"upload_time_iso_8601": "2024-12-05T07:13:49.411994Z",
"url": "https://files.pythonhosted.org/packages/71/9e/f9603f822f660b0fd4926ec718d4c87cc71fa74ba1eedf6448d3e46cc583/dynamsoft_barcode_reader_bundle-10.5.2100-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "56de5a34f31f5b70db8a7c48a08b539c7ccd4da6238205db5ca2f9729fb1905e",
"md5": "0e7451ac0d68caefdc35c9b2c5f62429",
"sha256": "1ba19e969ad374cfafe0ec08251acd9377eecd1cfae5a9505161d2b3f66815b3"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-macosx_12_0_universal2.whl",
"has_sig": false,
"md5_digest": "0e7451ac0d68caefdc35c9b2c5f62429",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 29058448,
"upload_time": "2024-12-05T07:14:12",
"upload_time_iso_8601": "2024-12-05T07:14:12.121123Z",
"url": "https://files.pythonhosted.org/packages/56/de/5a34f31f5b70db8a7c48a08b539c7ccd4da6238205db5ca2f9729fb1905e/dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-macosx_12_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4d48ac05b075ed8fdf083ee2ad058d86a6d656393b8183a3865f3cf25f71ca5",
"md5": "23fb86acb33cd5663cbfc09648f80ea9",
"sha256": "f21f49cd320456ae7dabbd5f59b822403a62a919b8ceba3f86af380d3751c1de"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "23fb86acb33cd5663cbfc09648f80ea9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 18518983,
"upload_time": "2024-12-05T07:14:19",
"upload_time_iso_8601": "2024-12-05T07:14:19.140528Z",
"url": "https://files.pythonhosted.org/packages/a4/d4/8ac05b075ed8fdf083ee2ad058d86a6d656393b8183a3865f3cf25f71ca5/dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9fbedde3ab464bd34e7941a9838f4876c0085f5c79154558cbf92a3fa4b56049",
"md5": "de18f61b9d42a4def9b5e74a8c87b42f",
"sha256": "15817fd75ee968e7e53bf63223be705cf7206f58bb6cd7a41d981839b895188d"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "de18f61b9d42a4def9b5e74a8c87b42f",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 16882869,
"upload_time": "2024-12-05T07:14:25",
"upload_time_iso_8601": "2024-12-05T07:14:25.081954Z",
"url": "https://files.pythonhosted.org/packages/9f/be/dde3ab464bd34e7941a9838f4876c0085f5c79154558cbf92a3fa4b56049/dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dc4f8d3488880bc7c43e708e4d8ac93cceedab84eb57ab14c577e05ef778f6bb",
"md5": "b160cfcd5b82608be81f5b1e2c4a0d99",
"sha256": "b64266df0e62a38c387ae3522e84a7ece7b88d58f0d4b6a3bae144399d55fcb8"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "b160cfcd5b82608be81f5b1e2c4a0d99",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": null,
"size": 13437678,
"upload_time": "2024-12-05T07:14:29",
"upload_time_iso_8601": "2024-12-05T07:14:29.954450Z",
"url": "https://files.pythonhosted.org/packages/dc/4f/8d3488880bc7c43e708e4d8ac93cceedab84eb57ab14c577e05ef778f6bb/dynamsoft_barcode_reader_bundle-10.5.2100-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fd3d26316f5dd7787f7c0c0f83cdcb28c8007578b6657e0dd80a8322360af2f",
"md5": "e225aae1806e8d894fd58e2e2a1ef8c4",
"sha256": "19edf1e96f5ade5bc935beb61abb9e5077ed00cb75286bf3af188335d588345c"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-macosx_12_0_universal2.whl",
"has_sig": false,
"md5_digest": "e225aae1806e8d894fd58e2e2a1ef8c4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 29053967,
"upload_time": "2024-12-05T07:15:07",
"upload_time_iso_8601": "2024-12-05T07:15:07.437027Z",
"url": "https://files.pythonhosted.org/packages/4f/d3/d26316f5dd7787f7c0c0f83cdcb28c8007578b6657e0dd80a8322360af2f/dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-macosx_12_0_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "72490df67be8808f0dd81fa92b477966eb46a5fccba5af6f6fc719b678fd7221",
"md5": "77c2e8c5d16aa59232757ae1a50eed98",
"sha256": "c33148b6218c79e651205026c8552f371fd236b9bdb294d44728fb855ea2808f"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "77c2e8c5d16aa59232757ae1a50eed98",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 18538037,
"upload_time": "2024-12-05T07:15:41",
"upload_time_iso_8601": "2024-12-05T07:15:41.679858Z",
"url": "https://files.pythonhosted.org/packages/72/49/0df67be8808f0dd81fa92b477966eb46a5fccba5af6f6fc719b678fd7221/dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4707405aa9c3293ab54689b48865e8ee7180408bf5eb733a1d866db32b2217b3",
"md5": "7b0c599f6485bc93ab5767a8d3c425ee",
"sha256": "97390c7a8b982b1bcb64525555885b13a2f49082d9b7e38b686a5fee4b0f94b4"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "7b0c599f6485bc93ab5767a8d3c425ee",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 16893823,
"upload_time": "2024-12-05T07:16:16",
"upload_time_iso_8601": "2024-12-05T07:16:16.473281Z",
"url": "https://files.pythonhosted.org/packages/47/07/405aa9c3293ab54689b48865e8ee7180408bf5eb733a1d866db32b2217b3/dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "16f5a5d32729fe146e040a766834590f886247917b8beb0e4010f9fc3315844b",
"md5": "b4de6960fd5ab2e641320700c0d90c9e",
"sha256": "43ab4769262c9ede6936902fc3eaf77761c434f3dfa4ec5948d3ab4f6e7272a7"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "b4de6960fd5ab2e641320700c0d90c9e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": null,
"size": 13437903,
"upload_time": "2024-12-05T07:16:33",
"upload_time_iso_8601": "2024-12-05T07:16:33.887080Z",
"url": "https://files.pythonhosted.org/packages/16/f5/a5d32729fe146e040a766834590f886247917b8beb0e4010f9fc3315844b/dynamsoft_barcode_reader_bundle-10.5.2100-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1aa55b7dbc116f1f5c77882f86f38b2906177cf71c06625b7bbcdb201e3a0709",
"md5": "34d5fd4cfe293f47a25a07758233d782",
"sha256": "400caa1aa8a13c870eee27d56b9dea205d8a75eab57b74ecd4cb65c290cb0244"
},
"downloads": -1,
"filename": "dynamsoft_barcode_reader_bundle-10.5.2100.tar.gz",
"has_sig": false,
"md5_digest": "34d5fd4cfe293f47a25a07758233d782",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 102631037,
"upload_time": "2024-12-05T07:16:59",
"upload_time_iso_8601": "2024-12-05T07:16:59.122446Z",
"url": "https://files.pythonhosted.org/packages/1a/a5/5b7dbc116f1f5c77882f86f38b2906177cf71c06625b7bbcdb201e3a0709/dynamsoft_barcode_reader_bundle-10.5.2100.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-05 07:16:59",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "dynamsoft-barcode-reader-bundle"
}