You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://pypi.org/project/dynamsoft_barcode_reader_bundle/)
@@ -14,55 +14,45 @@ This repository contains multiple samples that demonstrate how to use the [Dynam
14
14
15
15
### Supported Platforms
16
16
- Windows x64
17
-
- Linux (x64, ARM32, ARM64)
17
+
- Linux (x64, ARM64)
18
18
- macOS (10.15+)
19
19
20
20
### Supported Python Versions
21
21
22
-
- Python 3.6
23
-
- Python 3.7
24
-
- Python 3.8
25
-
- Python 3.9
26
-
- Python 3.10
27
-
- Python 3.11
28
22
- Python 3.12
23
+
- Python 3.11
24
+
- Python 3.10
25
+
- Python 3.9
26
+
- Python 3.8
29
27
30
28
## Installation
31
29
32
30
```
33
-
pip install dbr
31
+
pip install dynamsoft_barcode_reader_bundle
34
32
```
35
33
36
34
or
37
35
38
36
```
39
-
pip3 install dbr
37
+
pip3 install dynamsoft_barcode_reader_bundle
40
38
```
41
39
42
40
## Samples
43
41
44
42
| Sample Name | Description |
45
43
| ----------- | ----------- |
46
-
|[`hello-world`](samples/hello-world.py)| Shows the simplest way to recognize barcodes from images in Python using Dynamsoft Barcode Reader SDK. |
47
-
|[`general-settings`](samples/general-settings.py)| Shows how to adjust general scan settings, e.g., barcode format, barcode count, scan region. |
48
-
|[`image-decoding`](samples/image-decoding.py)| Shows how to decode images in various formats, e.g., file bytes, opencv image, raw image buffer. |
49
-
|[`video-decoding`](samples/video-decoding.py)| Shows how to decode barcodes from a video from a file or camera. |
50
-
|[`video-decoding-for-picamera`](samples/video-decoding-for-picamera.py)| Shows how to scan barcodes from videos from a Raspberry Pi camera (PiCamera). |
51
-
|[`batch-decode`](samples/performance/batch-decode.py)| Shows how to batch decode image files from a specified folder. |
52
-
|[`speed-first-settings`](samples/performance/speed-first-settings.py)| Shows how to configure the scan settings for best barcode reading speed. |
53
-
|[`read-rate-first-settings`](samples/performance/read-rate-first-settings.py)| Shows how to configure the scan settings to read as many barcodes as possible at one time. Recommended when decoding multiple barcodes from a single image. |
54
-
|[`accuracy-first-settings`](samples/performance/accuracy-first-settings.py)| Shows how to configure the scan settings for best barcode reading accuracy. |
55
-
|[`read-dpm-barcode`](samples/use-case/read-dpm-barcode.py)| Shows how to read DPM (Direct Part Mark) barcodes. |
44
+
|[`ReadAnImage`](Samples/read_an_image.py)| Shows the simplest way to read barcodes from an image file and output barcode format and text. |
45
+
|[`ReadMultipleImages`](Samples/read_multiple_images.py)| Shows the simplest way to read barcodes from directory with image files and output barcode format and text. |
The barcode reader library requires a license to work. You can use the API `init_license` to initialize the license key and activate the SDK.
53
+
The library requires a license to work, you use the API `LicenseManager.init_license` to initialize license key and activate the SDK.
64
54
65
-
These samples use a free public trial license which requires a network connection to function. You can request a 30-day free trial license key from <ahref="https://www.dynamsoft.com/customer/license/trialLicense?architecture=dcv&product=dbr&utm_source=samples&package=python"target="_blank">Customer Portal</a> which works offline.
55
+
These samples use a free public trial license which require network connection to function. You can request a 30-day free trial license via the <ahref="https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github&package=python"target="_blank">Request a Trial License</a> link which works offline.
# You can request and extend a trial license from https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=samples&package=python
7
+
# The string 'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9' here is a free public trial license. Note that network connection is required for this license to work.
# You can request and extend a trial license from https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=samples&package=python
33
+
# The string 'DLS2eyJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSJ9' here is a free public trial license. Note that network connection is required for this license to work.
0 commit comments