A fast PDF generation library for Python, written in Rust
Project description
pdfcrate
Warning: This project is under active development. The API is unstable and subject to breaking changes. Do not use in production environments.
A Rust library for creating and manipulating PDF documents with a focus on ease of use and comprehensive text layout support.
Features
- Layout-based document creation - Cursor-based layout with automatic text flow, margins, and bounding boxes
- Rich text formatting - Bold, italic, colors, alignment (left/center/right/justify)
- Font support - 14 standard PDF fonts + TrueType/OpenType embedding with text shaping
- Font fallback - Automatic fallback for mixed-language text (CJK, emoji, etc.)
- Tables - Full-featured tables with borders, cell styles, column spans, and overflow handling
- Images - PNG and JPEG embedding with fit/fill modes
- SVG rendering - Embed SVG graphics directly
- Links and outlines - Hyperlinks, internal links, and document bookmarks
- Forms - Interactive form fields (text, checkbox, radio, dropdown)
- WASM support - Works in WebAssembly environments (tested with Cloudflare Workers)
- Python bindings - Use pdfcrate from Python via PyO3
Installation
Add to your Cargo.toml:
[dependencies]
pdfcrate = "0.1"
Quick Start
use pdfcrate::prelude::*;
fn main() -> Result<(), Box<dyn std::error::Error>> {
Document::generate("hello.pdf", |doc| {
doc.title("Hello PDF").author("pdfcrate");
doc.font("Helvetica-Bold").size(24.0);
doc.text("Hello, World!");
doc.move_down(20.0);
doc.font("Helvetica").size(12.0);
doc.text_wrap("This is a simple PDF document created with pdfcrate. \
Text automatically wraps within the page margins.");
Ok(())
})?;
Ok(())
}
Examples
Custom Fonts
use pdfcrate::prelude::*;
Document::generate("custom_font.pdf", |doc| {
// Embed a TrueType font
let font = doc.embed_font_file("fonts/MyFont.ttf")?;
doc.font(&font).size(16.0);
doc.text("Text with custom font!");
Ok(())
})?;
Font Fallback for CJK
use pdfcrate::prelude::*;
Document::generate("multilingual.pdf", |doc| {
let cjk_font = doc.embed_font_file("fonts/NotoSansCJK.ttf")?;
// Configure fallback fonts
doc.fallback_fonts(vec![cjk_font]);
doc.font("Helvetica").size(14.0);
doc.text_wrap("English text mixed with 中文 and 日本語");
Ok(())
})?;
Tables
use pdfcrate::prelude::*;
Document::generate("table.pdf", |doc| {
let table = Table::new(&[100.0, 150.0, 100.0])
.header(&["Name", "Description", "Price"])
.row(&["Item 1", "First item", "$10.00"])
.row(&["Item 2", "Second item", "$20.00"])
.borders(BorderStyle::all(0.5, Color::BLACK));
doc.table(&table);
Ok(())
})?;
Images
use pdfcrate::prelude::*;
Document::generate("with_image.pdf", |doc| {
// Embed and draw image
doc.image_fit("photo.png", [0.0, 0.0], 200.0, 150.0)?;
Ok(())
})?;
Python
pdfcrate provides Python bindings via PyO3 and maturin.
# Install in development mode
uv run maturin develop --features python
# Run the showcase
uv run python examples/showcase.py
from pdfcrate import Document, Margin, Color, TextFragment
doc = Document(margin=Margin(36, 36, 36, 36))
doc.title("Hello from Python")
doc.font("Helvetica", 24)
doc.text("Hello, World!")
doc.move_down(20)
doc.font("Helvetica", 12)
doc.text("Created with pdfcrate Python bindings.")
doc.save("hello.pdf")
Feature Flags
All features are pure Rust and WASM-compatible.
| Feature | Default | Description |
|---|---|---|
std |
Yes | Standard library support (file I/O) |
png |
Yes | PNG image support (JPEG is always supported) |
fonts |
Yes | TrueType/OpenType font embedding |
text-shaping |
Yes | Complex text shaping via rustybuzz |
svg |
Yes | SVG rendering support |
barcode |
Yes | QR code and barcode generation |
python |
No | Python bindings (PyO3) |
To use minimal features:
[dependencies]
pdfcrate = { version = "0.1", default-features = false }
Minimum Supported Rust Version (MSRV)
Rust 1.87 or later.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pdfcrate-0.1.1.tar.gz.
File metadata
- Download URL: pdfcrate-0.1.1.tar.gz
- Upload date:
- Size: 204.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c40f4596985aafee5e4ccd3cb74e33ce7abc30c269ce03c25b66ee133492e17a
|
|
| MD5 |
0955939083c08a28a79fb6c88073b962
|
|
| BLAKE2b-256 |
002c700f851a26bce0210b20ef888b77ac53343cfbfe001403baf03f46ee07b9
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a54a1ac494a08890aeca0a2300d0c8a9d17edca4820622bde8207a66963daac
|
|
| MD5 |
68648fe4d77d4c90c4a7816ad8f496fb
|
|
| BLAKE2b-256 |
f519d2d25a9e2b405c8e7ddbec37905cb4c4cb4ac1c6385c155757999fdbec0e
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0036cebe4b00c3e4c54570a608023893744d8571c06ec91537e91305fbc8027d
|
|
| MD5 |
edc94625bb9cc7b9db696cd2575224de
|
|
| BLAKE2b-256 |
cf5a993d802d5c464d60f78ef7bb2e08b68738e3d06273cd202893ffdaa86238
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-win32.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-win32.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c0531d229fff6eaaf58e89c2d487abd40bf700bbd8801195c48fdc72612f0d4
|
|
| MD5 |
d707c36008d791820836b10c2c313f07
|
|
| BLAKE2b-256 |
8f4a34e300091d0e32a495dca6c44e0ad07de994f6068fb4af1e94b7d673f2dc
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dafcf7c0a75bc2dc2e1621945d2ad5223e2dc3bd0770263d51b6b83d5e866fa
|
|
| MD5 |
68c89a470b21a66aa8df06765441a065
|
|
| BLAKE2b-256 |
7a88dd0f134aed1cf706cb1eba9acddb9f450911a9213bb61a72f616e3ac410f
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a5f133bf6a6177eb5c537dab54f27c0c0d29a7fcdaa2ade74ed173c5438abd8
|
|
| MD5 |
29858396b898d3343e0cc828505d71ab
|
|
| BLAKE2b-256 |
cf7e8dc5d414591cace16945285ad6ae5d05da631ac1b54385962706ff150bc8
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c53edcacc830ebbdb110a4fe63a4c0a36cc9e2bc421464eac83e9126b7418798
|
|
| MD5 |
2da4fd264acd21e034484e4732c95ddb
|
|
| BLAKE2b-256 |
3a89754e474159b79b17b2637a7f00c88bb0036775cb2e36e1a528bbb3b68749
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
566948153eb30eb11e09c593b7e816f66caa9e709675fa7fe15865ba92c0ba4c
|
|
| MD5 |
690e140c7ed9e62357a267010717c328
|
|
| BLAKE2b-256 |
f876db63d1522a5b1d3596d1500f0d13760cd7b7beeafdb685c4a5962bc58ade
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
963c9e84f4d40504f40bffe9cc9a8d75d0383905267c4d0a30bfe634f86a69a9
|
|
| MD5 |
467a1ee033c866b10c9bef7e32add384
|
|
| BLAKE2b-256 |
882a9ae4042df60a7bb87504171f1bbe3f193d0c7211b003d4ff0fc6075fb25a
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83555b346aa65de3c22921fbc196e37fe053c953d8156a292128f40e9247b473
|
|
| MD5 |
76bf693811f77772fc28ee5d9274002e
|
|
| BLAKE2b-256 |
dcc099d1d1e3d9a26db1a45335aa712f7c571017774c7affadb05a5c3e3f6bda
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.0 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f6473154127280b9393169bbcea134141d1fed6873b0708000de1e59afb5da9
|
|
| MD5 |
f3905d768a9f0b81b7a1d31d917bf631
|
|
| BLAKE2b-256 |
65b6b0e37c3fae7e4b6d4484e3c049b8494cac982902ee1f84fb4a78af3ce5f8
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53f5e0f054ae85b790e6830d72493bf898b449a17a59c11472cb45a796633ff7
|
|
| MD5 |
172e59e748f8893f1cfe40056477b0ed
|
|
| BLAKE2b-256 |
93b10269ec4da729394a6da5d2a3764781b504da830c987f5f4480de57ffb520
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82d2d2232f2745d7694d8dfe3c5c3b3f22f744ef11675356486292bdff57d833
|
|
| MD5 |
6c5a8ca5b53fb76b69ee18e4ae4f4657
|
|
| BLAKE2b-256 |
b99e412bc29213f9d0b82762b3bad3d1752720ddc23423e207bc493376e9ca4a
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6d5c63f94b2ced3f3bae0b4bd9b93bcf70235e312a2906b9e1f12d832fd2603
|
|
| MD5 |
0ab4b4b281aef5790d9b1e4eea292198
|
|
| BLAKE2b-256 |
c2b6a8a9cd2eedc627bd4404d23f7a189e4eeda69358a13424ccdbe3f6a0a4e7
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfcaeb08c97b0a3b9efda4e738269409ea2016371bdec885210252d57b696ec9
|
|
| MD5 |
e9ab73ede5003311e0a612725bb6c42b
|
|
| BLAKE2b-256 |
df4c64ced810a78514429bad5ea853f9fa1c47afad57cd339761e38a6a039e99
|
File details
Details for the file pdfcrate-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
371542a31c18b7bcee4b49d5c92ee063f8129e1685c17df178deee55868e02ab
|
|
| MD5 |
4144899638dee6e45e886b5013a46d33
|
|
| BLAKE2b-256 |
2a1da734eada1c3bc8708b5b28713253babdfb5ae58f3aa4e1adcfb3ec35a95b
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-win_arm64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-win_arm64.whl
- Upload date:
- Size: 2.7 MB
- Tags: CPython 3.9+, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2699295d7c873823b37586e7dbf6a78d01f24ae59b2b212fb97e563d84128433
|
|
| MD5 |
5c6a360d4215d99146e63e730ffe980a
|
|
| BLAKE2b-256 |
12b3400e83919bb0a283a72a5a00cb3a0589a20148ca1f779a099a852b45bf92
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5487cfcdc4098d4122150e44935799dc1f094f33f58c2d6fb5e017f855d166c8
|
|
| MD5 |
c49e64a643db1d47a04bf03baa9b975b
|
|
| BLAKE2b-256 |
5e5a1d77bdc98251095f7452e6d6d09efa61d008b9760f00957baad4ed4879a2
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-win32.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-win32.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.9+, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce31d75271ad01c26f2d6a025ebd011837ee1b350f8e3bf2d44d3b3304240b78
|
|
| MD5 |
97f9327dc3eddb69be53a631f019219a
|
|
| BLAKE2b-256 |
ea8a14e41b2beaec2b3b8453ae7442e7d0bba5652c9012956666befcc30337ae
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dcc059669b0534ea7163764df9825c479b878ad2aca5208b60952d5a40c6fc0
|
|
| MD5 |
b49c333f05776e300a21b506842b3df8
|
|
| BLAKE2b-256 |
a2d6a677f3f7c32452a4d0fc83e299d0fa632eac2d748ca9ccd9f1ed1726dd0b
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_i686.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_i686.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59af5d0e7befc7bf4a1f3118fd34b5ab6bffb909907c45dddd419a6430186fda
|
|
| MD5 |
78b5770d1d99cd3ef6834ece0badeb4b
|
|
| BLAKE2b-256 |
fcc123a0519c6070e7aafc8e6f8e364727022f4a65afd0a20ef87b262c456503
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a18d930c690fdda11ce43758d7f5684715ae1a462eebe5f09a715a2012dbaa8
|
|
| MD5 |
232592379d61e7834a85cd130d6192b1
|
|
| BLAKE2b-256 |
10d12dc0da97b7b5730d85e1f8a334d2b3254ac23cfde3955a35a521c0cb8315
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.9+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca05bfb6c4f5ccbeefd0e1899956edcaf67ecadf7fd12902461a8447306d67b1
|
|
| MD5 |
64f2f865d96abbbc9566bbccbb4e0740
|
|
| BLAKE2b-256 |
fdd8590d0205d4f66c5c50aa1e56024b58894cf34b0e3e34e4a78107fae9436e
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7621280f38a6bf251aa0a33ffd061db2ca2d5b25060243fa33541366be47cc38
|
|
| MD5 |
fef62f7d47630d762290db0f3261ba01
|
|
| BLAKE2b-256 |
104bf6f49e9b0cd352ae8eb61be067d51282544a14efd0dbfb28ce4fe6d997ca
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac47b200c50c9df1116af7769543df3ef46a704cc2a14e265b0647cbab278877
|
|
| MD5 |
ae1c5ed9c43e28827e83f4e3e1bf2929
|
|
| BLAKE2b-256 |
f379018a8b1d8906ca4309251052d952ec6645c71ab0822b345a25eab13c0558
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fdee8ec30042eb0960959fe2a4e329de74be77e24a4ab1182d00ed4dec73f32
|
|
| MD5 |
3066499267597771fd8a8061b6ba3a8c
|
|
| BLAKE2b-256 |
568a5ab2c21d8b90af46a4db11793a57a6cad1b9f5b7cdacfd1c66fb233c2ae1
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.9+, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86c908655b932939126010199af301026674eb90d3ed5898d1014cdda2346d88
|
|
| MD5 |
cefb75c0c2451b6a83da063dcbca2f94
|
|
| BLAKE2b-256 |
cac81a0a1440acdf5d53f969948bd356cf45af70e80f8755e112b17718a4d7f3
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32abcda529663229aa3485ddb2edd9be03122a56b8ad0b23fa3a6dbbe0829445
|
|
| MD5 |
39bfaf6883fa74fa7329ce22e2b04cf5
|
|
| BLAKE2b-256 |
f6de53208c0e4f1a6f0db9d0be3b0a1305e1572daaa10566a488c7b83be807b6
|
File details
Details for the file pdfcrate-0.1.1-cp39-abi3-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp39-abi3-macosx_10_12_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9+, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6990d8fe40e1af31436b056e5bac8efc3d78cbbfc9c79eb81fbc3bd5b09841e
|
|
| MD5 |
0de85124ab349c8726df6a9c4a98307b
|
|
| BLAKE2b-256 |
600c1ec4c45fde5d6cc97f0568dde0b4577f52b7bc752b7c89f0ccae9fde4af4
|
File details
Details for the file pdfcrate-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83329467463dc0f93b55c65c3779fa0dcca8b229b4f71f935f84e6758a057477
|
|
| MD5 |
9d4b591a458b22e08de64b35a0eeef8d
|
|
| BLAKE2b-256 |
214845ea27acbf8eeeaad36b46b0ee4345e64371d753b131f15c401ced18b818
|
File details
Details for the file pdfcrate-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: pdfcrate-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.8 {"installer":{"name":"uv","version":"0.10.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a25977a473c54bd442236227a79c0171ef6bb98798e2c348c4400d33bc98140
|
|
| MD5 |
3f99040f36f163651fcabb7907da1c8b
|
|
| BLAKE2b-256 |
95d276727f4c9525644ab0761e97cb731aa87b55219d4882e5f7f4808f6ddc04
|