Skip to content

Commit 0a1679b

Browse files
authored
Merge pull request #11 from dynamsoft-dbr/Python-DBR7.2.2-Zoro
Python dbr7.2.2 zoro
2 parents 89381a7 + bbcbdf6 commit 0a1679b

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Version 7.2.2
44
The repository aims to help developers build **Python barcode** apps with [Dynamsoft Barcode Reader](https://www.dynamsoft.com/Products/Dynamic-Barcode-Reader.aspx) in Windows, Linux, macOS, and Raspberry Pi.
55

66
## License
7-
Get the trial license [here](https://www.dynamsoft.com/CustomerPortal/Portal/Triallicense.aspx). Then replace the old license with the newly generated one in the **config.py** file.
7+
Get the trial license [here](https://www.dynamsoft.com/CustomerPortal/Portal/Triallicense.aspx). Replace the old license with the newly generated one.
88

99
## Contact Us
1010
<support@dynamsoft.com>
@@ -242,7 +242,7 @@ pip install dbr
242242
- AppendVideoFrame(frame-by-opencv-capture)
243243
- InitLicenseFromLicenseContent(license-key, license-content)
244244
- OutputLicenseToString()
245-
- InitLicenseFromServer(license-key, license-server)
245+
- InitLicenseFromServer(license-server, license-key)
246246
- InitRuntimeSettingsByJsonString(jsonTemplateString)
247247
- OutputSettingsToJsonString()
248248
- InitRuntimeSettingsByJsonFile(jsonTmeplateFile)

examples/command-line/test_DecodeImagesInFolder.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,5 @@ def dynamsoftReader (fileName, key):
5252
print(img)
5353
print('Test', idx+1)
5454
print(40*'#')
55-
print('Dynamsoft Barcode Reader 7.2.0.09242:')
5655
dynamsoftReader(img, LICENSE_KEY)
5756
print(40*'#')

examples/command-line/test_DecodeLocalVideos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def read_barcode(video_path):
119119
batch_folder = batch_folder_path
120120
onlyfiles = [f for f in listdir(batch_folder) if isfile(join(batch_folder, f))]
121121
for item in onlyfiles:
122-
fileName = batch_folder+"\\"+item
122+
fileName = batch_folder+"/"+item
123123
print ('processing',str(fileName))
124124
read_barcode(fileName)
125125
print("-------------------over------------------------")

0 commit comments

Comments
 (0)