help me please( I can't generate DataMatrix with GS1 symbol(FNC1) in python. when I just try the below code I can't get symbol gs1 in the screen
from ppf.datamatrix import DataMatrix
data = '0104680059740223213(OkNQCgC*qXF91KZF092gSnuwHu7c3KkrgPhR7eWzfH5/Qg=gSnuwHu7c3KkrgPhR7eWzfH5/Qg=gSnuwHu7c3KkrgPhR7eWzfH5/Qg=gSnu'
myDataMatrix = DataMatrix(data)
myDataMatrix
You are printing out the DataMatrix object. There is no reason for an image to show up. The call:
will return the content of the svg file with the datamatrix. You can save the contents into a file and view it, for example in a web browser.
If you are refering to the ppf.datamatrix homepage, which seems to suggest, that executing myDataMatrix should somehow print out the code: They probably use Jupyter notebook ot ipython.