Quickstart#

Installation#

You can install glopan with pip:

python -m pip install glopan

Remeber to configure glopan to get access to all features!

Basic usage#

glopan can be imported as a regular Python package or used through the command line interface. You can find some examples of basic usage below.

import glopan
glopan -h

Combine several PDFs into one:

glopan.combine_pdfs(['Report.pdf', 'Appendix.pdf'], 'Report_full.pdf')
glopan combine Report.pdf Appendix.pdf -o Report_full.pdf

Convert a DOCX file to PDF:

glopan.docx_to_pdf('Report.docs')
glopan convert Report.docx -tf pdf

Split a PDF and convert one of its pages into SVG:

glopan.split_pdf('Report.pdf')
glopan.pdf_to_svg('Report_p_5.pdf')