Running and Debugging a Python Barcode App in a Docker Container
Efficiently test the compatibility of your Python barcode extensions built with CPython and the Dynamsoft Barcode Reader.
Join the DZone community and get the full member experience.
Join For FreeWhen creating Python barcode extensions using CPython and Dynamsoft Barcode reader, one of the major concerns you have to face is testing your code compatibility with different versions of Python.
To test if your Python barcode extension works in your Windows, Linux, or macOS, you will need to have each version of Python installed on your computer. However, it’s time-consuming.
Here, we have an easy hack for you! Instead of installing all those Python versions, you can use a Docker container.
Creating Docker Image With Python Barcode SDK
First of all, download the Docker desktop and install it.
If your system does not have Python 3.8, then go to the Docker hub and pull out a Docker image that contains Python 3.8. Now invoke the command from the command prompt:
docker run -it --rm python:3.8 bash
If the docker image does not exist, the command given above will by itself trigger the download.
Next, you can create a Dockerfile to create a fresh Docker image that will include the Dynamsoft Barcode Reader SDK:
FROM python:3.8
RUN pip install dbr
To generate a Docker image:
docker build --rm -t yushulx/dynamsoft-barcode-reader:python-3.8
Further, run a container test. It will help you validate if your Python-based Dynamsoft Barcode Reader is working fine or not.
docker run -it --rm yushulx/dynamsoft-barcode-reader:python-3.8
Next, you need to publish the Docker Image to your Docker Hub after your container is validated:docker login
docker push yushulx/dynamsoft-barcode-reader:python-3.8
You can visit this link to test the image.
Mounting Local Folder to Docker Container
To mount a local Windows folder to the Linux Docker Container, execute the Python script using Python 3.8.
After that, select the shared drive from the settings of the Docker desktop:
To mount the Windows folder to the Linux container, execute the following command:
docker run -it --rm -v d:/code/docker:/dynamsoft yushulx/dynamsoft-barcode-reader:python-3.8 bash
How to Debug Python Code With Visual Studio Code Remote-Containers
The preferred option to write and debug the Python code is to use Visual Studio Code.
To start with it, first, install the Docker extension for VSCode as shown below:
Click the F1 key to execute the “Attach to Running Container” option.
Double-click on the project folder.
It will allow you to edit the Python file in VSCode. Next, install the Python debugger for the container to debug the code:
For debugging of the code remotely, click F5.
The complete Python barcode detection code is given below:
import os
from dbr import DynamsoftBarcodeReader
dbr = DynamsoftBarcodeReader()
def InitLicense(license):
dbr.InitLicense(license)
def DecodeFile(fileName):
try:
results = dbr.DecodeFile(fileName)
textResults = results["TextResults"]
resultsLength = len(textResults)
print("count: " + str(resultsLength))
if resultsLength != 0:
for textResult in textResults:
print(textResult["BarcodeFormatString"])
print(textResult["BarcodeText"])
localizationResult = textResult["LocalizationResult"]
x1 = localizationResult["X1"]
y1 = localizationResult["Y1"]
x2 = localizationResult["X2"]
y2 = localizationResult["Y2"]
x3 = localizationResult["X3"]
y3 = localizationResult["Y3"]
x4 = localizationResult["X4"]
y4 = localizationResult["Y4"]
localizationPoints = [(x1,y1),(x2,y2),(x3,y3),(x4,y4)]
print(localizationPoints)
else :
print("No barcode detected")
except Exception as err:
print(err)
if __name__ == "__main__":
# Get the license from https://www.dynamsoft.com/customer/license/trialLicense/
licenseKey = "DLS2eyJoYW5kc2hha2VDb2RlIjoiMjAwMDAxLTE2NDk4Mjk3OTI2MzUiLCJvcmdhbml6YXRpb25JRCI6IjIwMDAwMSIsInNlc3Npb25QYXNzd29yZCI6IndTcGR6Vm05WDJrcEQ5YUoifQ=="
fileName = r"test.jpg"
InitLicense(licenseKey)
dir_path = os.path.dirname(os.path.realpath(__file__))
DecodeFile(os.path.join(dir_path, fileName))
Published at DZone with permission of Eric Parker. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments