Python utility library for compositing PDF documents with reportlab
pdfdoc-py Python utility library for compositing PDF documents with reportlab. Installation The pdfdoc-py package can be installed directly from the source code: $ git clone https://github.com/michaelgale/pdfdoc-py.git $ cd pdfdoc-py $ python setup.py install Usage After installation, the package can imported: $ python >>> import pdfdoc >>> pdfdoc.__version__ Example of making a label sheet with 25 labels on Avery 5262 self-adhesive label sheets: from pdfdoc import * ld = LabelDoc(“my_labels.pdf”, style=AVERY_5262_LABEL_DOC_STYLE) labels = [i for i in range(25)] for label, row, […]
Read more