Generating a Code39 Barcode
The reason for writing this script was that I had already written a script for modifying a form we use, and on this form are barcodes, one of which indicates the type of form, but the other is variable according to the content of the page.
The script creates that custom part, which has a 10-digit number, then underneath is the barcode. By trial and error I determined that this was a Code39 barcode. Unfortunately, the barcode generator in Scribus cannot be scripted, and in fact you cannot make a custom size for the barcode, so I was copying the 10-digit number, then running Barcode generator, then resizing the created code, which is a PostScript creation, so when it's resized, the width of the bars may change. So far it's been Ok, but this might affect the scanning process.
So here is a first attempt, code39.py. It is not very fast. Creating a 10-digit barcode takes 60-70 seconds. I suspect that either the parsing of the code for narrow and wide lines or the repetitive line drawing (or both) is the speed issue. So far this will only generate a code for digits (plus the start/stop characters). I'd like to see if I can speed it up before adding letter capability.