Skip to content

Commit cef7627

Browse files
authored
Merge pull request #32 from ZoroWang/master
Update to 8.2
2 parents b303d0c + 5eb2642 commit cef7627

17 files changed

+211
-23
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
![Dynamsoft](https://dynamsoft.github.io/styleguide/assets/img-icon/logo-dynamsoft-whiteBg-190x47.png "Dynamsoft") | ![dbr](https://dynamsoft.github.io/styleguide/assets/img-icon/logo-dbr-88x88.png "dbr")
77

88

9-
**[Dynamsoft's Barcode Reader SDK](https://www.dynamsoft.com/Products/Dynamic-Barcode-Reader.aspx) 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.**
9+
**[Dynamsoft's Barcode Reader SDK](https://www.dynamsoft.com/barcode-reader/overview/?utm_source=github) 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.**
1010

1111
## Dynamsoft Barcode Reader - Python Edition
1212

13-
*Dynamsoft Barcode Reader's Python Edition comes with all the general features of Dynamsoft Barcode Reader, bringing convenience for customers who develop in Python. In addition, you could refer to the Python samples available in our [Github](https://github.com/dynamsoft-dbr/python-barcode) when building your own application. If you have any inquiries about our product, please contact us at support@dynamsoft.com. If you need more information, please check out our [documentation site](https://www.dynamsoft.com/barcode-reader/programming/python/).*
13+
*Dynamsoft Barcode Reader's Python Edition comes with all the general features of Dynamsoft Barcode Reader, bringing convenience for customers who develop in Python. In addition, you could refer to the Python samples available in our [Github](https://github.com/dynamsoft-dbr/python-barcode) when building your own application. If you have any inquiries about our product, please contact us at support@dynamsoft.com. If you need more information, please check out our [documentation site](https://www.dynamsoft.com/barcode-reader/programming/python/?utm_source=github).*
1414

1515
## Table Of Contents
1616
- [Version](#version)
@@ -30,7 +30,7 @@
3030

3131
### Version
3232

33-
- **8.1.2**
33+
- **8.2**
3434

3535
### Supported Platforms
3636
- **Windows x64**
@@ -55,7 +55,7 @@
5555
5656
### License
5757

58-
Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
58+
Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
5959

6060
### Supported Symbologies
6161
*We support all major barcodes symbologies across a variety of industries such as government, finance, retail, warehouse inventory, and healthcare.*
@@ -97,18 +97,18 @@ Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicen
9797

9898
### Release Notes
9999

100-
https://www.dynamsoft.com/barcode-reader/programming/python/?ver=latest#release-notes
100+
https://www.dynamsoft.com/barcode-reader/programming/python/?ver=latest&utm_source=github#release-notes
101101

102102
### Interfaces
103103

104104
#### Enumerations
105-
https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?ver=latest#enumerations
105+
https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?ver=latest&utm_source=github#enumerations
106106

107107
#### Classes
108-
https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?ver=latest#classes
108+
https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?ver=latest&utm_source=github#classes
109109

110110
#### Main Class Interface
111-
https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?ver=latest#barcodereader-methods
111+
https://www.dynamsoft.com/barcode-reader/programming/python/api-reference/?ver=latest&utm_source=github#barcodereader-methods
112112

113113
### Appendix
114114

demo/BarcodeReaderDemo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def decode_files(path):
186186

187187
license_key = "Input your own license"
188188

189-
# Apply for a trial license: https://www.dynamsoft.com/CustomerPortal/Portal/Triallicense.aspx
189+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
190190
reader.init_license(license_key)
191191

192192
## The code snippet below shows how to use the full license in DBR 8.x:

demo/DecodeVideoDemo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def read_barcode():
203203
# you can change the following variables' value to your own value.
204204
license_key = "Input your own license"
205205

206-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
206+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
207207
reader.init_license(license_key)
208208

209209
## The code snippet below shows how to use the full license in DBR 8.x:

samples/test_AppendTemplateFile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
reader = BarcodeReader()
1717

18-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
18+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
1919
reader.init_license(license_key)
2020

2121
## The code snippet below shows how to use the full license in DBR 8.x:

samples/test_AppendTemplateString.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
reader = BarcodeReader()
1414

15-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
15+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
1616
reader.init_license(license_key)
1717

1818
## The code snippet below shows how to use the full license in DBR 8.x:

samples/test_DecodeFile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
reader = BarcodeReader()
1313

14-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
14+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
1515
reader.init_license(license_key)
1616

1717
## The code snippet below shows how to use the full license in DBR 8.x:

samples/test_DecodeFileInMemory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
reader = BarcodeReader()
1212

13-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
13+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
1414
reader.init_license(license_key)
1515

1616
## The code snippet below shows how to use the full license in DBR 8.x:

samples/test_DecodeImageBufferByOpencv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
reader = BarcodeReader()
1616

17-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
17+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
1818
reader.init_license(license_key)
1919

2020
## The code snippet below shows how to use the full license in DBR 8.x:

samples/test_DecodeImagesInFolder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
reader = BarcodeReader()
1616

17-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
17+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
1818
reader.init_license(license_key)
1919

2020
## The code snippet below shows how to use the full license in DBR 8.x:

samples/test_DecodeIntermediateResults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
reader = BarcodeReader()
1313

14-
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense
14+
# Apply for a trial license: https://www.dynamsoft.com/customer/license/trialLicense?product=dbr&utm_source=github
1515
reader.init_license(license_key)
1616

1717
## The code snippet below shows how to use the full license in DBR 8.x:

0 commit comments

Comments
 (0)