Installation

PDFSyntax requires Python 3.8 or higher. It has no external dependencies.

Install via PyPI

The easiest way to install PDFSyntax is via pip:

pip install pdfsyntax

Install from Source

To install the latest version directly from the repository:

  1. Clone the repository:

    git clone https://github.com/desgeeko/pdfsyntax.git
    cd pdfsyntax

  2. Build and install using the makefile:

    make build
    pip install dist/*.whl

    Or manually with build:

    python3 -m pip install build
    python3 -m build
    pip install dist/pdfsyntax-*.whl