Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
dynamsoft-barcode-reader-bundle
Advanced tools
|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
|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.
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.
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.
Windows x64
Linux(x64, ARM64)
macOS (10.15+)
Python3.13
Python3.12
Python3.11
Python3.10
Python3.9
Python3.8
pip install dynamsoft_barcode_reader_bundle
Linear Barcodes (1D) :
2D Barcodes :
Patch Code
Pharmacode
GS1 Composite Code
GS1 DataBar :
Postal Codes :
.. code-block:: python
from dynamsoft_barcode_reader_bundle import *
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)
https://github.com/Dynamsoft/barcode-reader-python-samples
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>
_FAQs
Dynamsoft Barcode Reader SDK for Python
We found that dynamsoft-barcode-reader-bundle demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.