Skip to main content

Prince: convert HTML with CSS to PDF. Bundles the Prince engine - no separate install required.

Project description

prince-pdf

Python packaging of Prince, the HTML-with-CSS to PDF engine. The wheel bundles the Prince engine for the current platform: no separate installation, and neither installing the package nor launching the engine downloads anything. (Prince will access the network only if a document being converted references remote resources such as images or stylesheets.)

pip install prince-pdf
import prince_pdf

prince_pdf.convert("document.html", "document.pdf")

pdf_bytes = prince_pdf.html_to_pdf("<h1>Hello</h1>")        # in-memory
pdf_bytes = prince_pdf.markdown_to_pdf("# Hello")           # Prince 17+

The package also puts prince on PATH, so the full command-line interface works as documented:

prince document.html -o document.pdf

python -m prince_pdf also works anywhere the package is importable, even when the script directory is not on PATH.

Names

One package, three names: install it as prince-pdf, import it as prince_pdf, run it as prince. Note that pip install prince installs an unrelated statistics library, not this package.

Files vs. strings

convert() always interprets strings as filesystem paths, never as document content. To convert an HTML string, use html_to_pdf().

The *_to_pdf functions pipe the document through the engine's standard input, so the engine never sees a filename: relative URLs in the document are resolved against the current working directory, not against wherever the content originally came from. If a string derived from /tmp/report/index.html references images/chart.svg, pass the original location as a base URL:

prince_pdf.html_to_pdf(html, args=("--baseurl", "/tmp/report/"))

Python API

The package ships inline type annotations (py.typed).

  • prince_pdf.convert(inputs, output=None, args=()) — convert one or more files (HTML, XML, SVG; Markdown with Prince 17+; a list is merged into one PDF), with the format detected from each file. Extra command-line options go in args as a sequence of individual argument tokens — args=("--baseurl", "https://x.example/"), never a shell string like "--baseurl https://x.example/". Returns the output path, or the PDF as bytes when output is None.
  • prince_pdf.html_to_pdf(html, output=None, args=()), prince_pdf.markdown_to_pdf(markdown, ...), prince_pdf.xml_to_pdf(xml, ...) — convert a document given as a string or bytes, without temporary files. Markdown input requires a bundled Prince 17 or later (pip install --pre prince-pdf while 17 is in pre-release); on older engines markdown_to_pdf raises an error saying exactly that.
  • Failures raise PrinceError carrying .returncode, raw .stderr, and .messages — the engine's diagnostics parsed into Message(severity, location, text) tuples. Engine warnings during successful conversions are emitted on the "prince_pdf" logger.
  • prince_pdf.run(*args, **kwargs) — a thin subprocess.run() wrapper for raw engine access. It does not apply the error handling or diagnostic parsing that convert() provides: nonzero exits do not raise (pass check=True for CalledProcessError), and output is not captured unless requested.
  • prince_pdf.command(*args) — the argv list that would be run, for use with external process tooling (same caveats as run()).
  • prince_pdf.executable() — path of the bundled engine binary.
  • prince_pdf.version() — the engine's version string.
  • prince_pdf.license() — the default license-file location inside the bundle (prefer PRINCE_LICENSE_FILE, which survives reinstalls).

Licensing

Prince may be used without a purchased license under the conditions in the included Prince License Agreement (LICENSE-Prince.txt); unlicensed output carries a watermark on the first page. Commercial use requires an appropriate license from YesLogic. Point the engine at your license file with the PRINCE_LICENSE_FILE environment variable (preferred — it survives reinstalls), or install it at the path returned by prince_pdf.license(). The Python wrapper code itself is MIT-licensed (LICENSE).

Troubleshooting

  • Missing or wrong fonts in minimal containers: the wheel bundles the engine but uses the system's fonts. Install some, e.g. apt-get install fonts-dejavu fontconfig (Debian/Ubuntu) or apk add fontconfig ttf-dejavu (Alpine).
  • libfontconfig.so.1: cannot open shared object file (Linux x86-64): install the system fontconfig library, e.g. apt-get install libfontconfig1 — installing fonts as above also provides it.
  • Watermark on the first page: expected without a license — see Licensing above.
  • Documents referencing remote resources: fetching http(s) images or stylesheets requires network access at conversion time; self-contained local files need none.
  • Diagnosing failures: PrinceError.stderr carries the engine's warnings and errors; add --verbose (or -o plus --log=FILE) for more detail.

Supported platforms

Linux x86-64 and ARM64 (glibc), musl/Alpine ARM64, macOS 10.13+ (universal), Windows x64 and ARM64. On Linux x86-64 the engine additionally needs the system fontconfig library — in minimal containers, apt-get install libfontconfig1 (it usually arrives with fonts anyway).


Maintainer documentation — how wheels are built, verified, and released — is in RELEASING.md.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

prince_pdf-17.0.0.dev2026063001-py3-none-win_arm64.whl (13.6 MB view details)

Uploaded Python 3Windows ARM64

prince_pdf-17.0.0.dev2026063001-py3-none-win_amd64.whl (15.4 MB view details)

Uploaded Python 3Windows x86-64

prince_pdf-17.0.0.dev2026063001-py3-none-musllinux_1_2_aarch64.whl (15.5 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_x86_64.whl (15.9 MB view details)

Uploaded Python 3manylinux: glibc 2.25+ x86-64

prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_aarch64.whl (14.7 MB view details)

Uploaded Python 3manylinux: glibc 2.25+ ARM64

prince_pdf-17.0.0.dev2026063001-py3-none-macosx_10_13_universal2.whl (27.4 MB view details)

Uploaded Python 3macOS 10.13+ universal2 (ARM64, x86-64)

File details

Details for the file prince_pdf-17.0.0.dev2026063001-py3-none-win_arm64.whl.

File metadata

File hashes

Hashes for prince_pdf-17.0.0.dev2026063001-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 c0b960d032017af37510dfff692abd4864e66ac0997e5f445b2fabc9408a7288
MD5 d77d1691570b108c58062b7129624e60
BLAKE2b-256 2e235f5cf8c03b9ae8af5d15c2ad9db4ccf4dc0f8dc35b4ca4b2bf6bb36726e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for prince_pdf-17.0.0.dev2026063001-py3-none-win_arm64.whl:

Publisher: wheels.yml on yeslogic/prince-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prince_pdf-17.0.0.dev2026063001-py3-none-win_amd64.whl.

File metadata

File hashes

Hashes for prince_pdf-17.0.0.dev2026063001-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 92e79048f73fe14f4716067aa46941817be64ec2ef7f7ad1bf92a58f200c06df
MD5 d02dc2bad70eb6bf62d793a470bd10f5
BLAKE2b-256 a5ee1ff33cda298843b079b261464b09d1f65246774685f8e0fbea8ee1a1781a

See more details on using hashes here.

Provenance

The following attestation bundles were made for prince_pdf-17.0.0.dev2026063001-py3-none-win_amd64.whl:

Publisher: wheels.yml on yeslogic/prince-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prince_pdf-17.0.0.dev2026063001-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for prince_pdf-17.0.0.dev2026063001-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 baf56150f6d54c0e3f3a5c7984eee01f4ef19f49bda705d51494c4fa1028c663
MD5 88662eb6cb04551c3c4f35596ded1c08
BLAKE2b-256 54c8021b862b44913878559a1aa702634c297134313041b4629500d12bac59c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for prince_pdf-17.0.0.dev2026063001-py3-none-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on yeslogic/prince-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_x86_64.whl.

File metadata

File hashes

Hashes for prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_x86_64.whl
Algorithm Hash digest
SHA256 b36dbb4c78c48ba271f90a257d3e20d318d27dd1d3dd0ab54c436b274cec3a56
MD5 9ffdbbddebb90bf332bb017a59552f87
BLAKE2b-256 d7d836c0efe98c4f682a9328ebda305c9ebfc1cf9e2647931147df62110db6f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_x86_64.whl:

Publisher: wheels.yml on yeslogic/prince-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_aarch64.whl.

File metadata

File hashes

Hashes for prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_aarch64.whl
Algorithm Hash digest
SHA256 74d550b3f0e406c8e4be9e8b6eb25b28eee0146e4afa396637d99e2febe7fdae
MD5 b4b6fdf6a2867910d978574c6e2da1b4
BLAKE2b-256 3e83480a2427c7cf2f55a37a50bb367f4687e8f227366db1fb40ed5f44ad1184

See more details on using hashes here.

Provenance

The following attestation bundles were made for prince_pdf-17.0.0.dev2026063001-py3-none-manylinux_2_25_aarch64.whl:

Publisher: wheels.yml on yeslogic/prince-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file prince_pdf-17.0.0.dev2026063001-py3-none-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for prince_pdf-17.0.0.dev2026063001-py3-none-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 dc8024a87616368291d0edb7c8ebb6f365e84256c3e85bd769632562db179afd
MD5 5ab7c2d91b59b22cc8d084eb7bf5cad9
BLAKE2b-256 f0f6329177f094242f55d7a728428c1c8c8ba2609b99eafce8b2c779791f5baf

See more details on using hashes here.

Provenance

The following attestation bundles were made for prince_pdf-17.0.0.dev2026063001-py3-none-macosx_10_13_universal2.whl:

Publisher: wheels.yml on yeslogic/prince-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page