Skip to main content

pillow-lunasvg

PyPI Python versions CI License

SVG read support for Pillow, powered by LunaSVG, a small C++ SVG renderer.

import pillow_lunasvg  # registers the plugin
from PIL import Image

im = Image.open("logo.svg")        # RGBA, intrinsic size
im.load(scale=4)                    # optional: crisp render at 4x, before any other use
im.save("logo.png")
pip install pillow-lunasvg

Wheels for Linux (glibc and musl; x86_64, aarch64), macOS (arm64, x86_64) and Windows (AMD64), CPython 3.10–3.14. No system libraries: LunaSVG and its rasterizer plutovg are compiled into the wheel. Building the sdist needs CMake and a C++17 compiler.

Usage

Image.open reads the SVG and sets size from its width/height or viewBox, rounded up to whole pixels. Pixels are rendered on the first load(), which Pillow calls for you on any pixel access. The result is RGBA on a transparent background.

Render at a different size. Call load(scale=...) yourself, before anything else touches the pixels; the first load() wins, later calls return what is already rendered. For a crisp thumbnail, render the vector close to the target size instead of downscaling a small bitmap:

im = Image.open("icon.svg")
im.load(scale=512 / max(im.size))   # longest side = 512 px
im.thumbnail((512, 512))

Sizes are checked against Image.MAX_IMAGE_PIXELS like any other Pillow image, at open and again at load(scale=).

White background (e.g. for JPEG):

im = Image.open("logo.svg")
bg = Image.new("RGBA", im.size, "white")
Image.alpha_composite(bg, im).convert("RGB").save("logo.jpg")

Fonts. <text> uses system fonts. Servers and containers often have none; register font files at startup:

pillow_lunasvg.add_font_file("/fonts/Inter-Regular.ttf", "Inter")
pillow_lunasvg.add_font_file("/fonts/DejaVuSans.ttf")  # no family: fallback for any text

add_font_file raises OSError if the file cannot be loaded. The LunaSVG version is in pillow_lunasvg.lunasvg_version.

Why

Pillow does not read SVG, and python-pillow/Pillow#3509 has been open since 2018; the maintainers point to a third-party plugin. The usual workaround, cairosvg, needs the system cairo library, and "no library called cairo was found" is a common install failure, especially on Windows and in slim containers. pillow-lunasvg is a regular wheel with nothing else to install, and it plugs into Image.open, so existing Pillow code (thumbnail, convert, save) works on SVG files unchanged.

Benchmarks

3,460 real-world icons from simple-icons 16.31.0, SVG bytes to PNG bytes, Apple M4, median per icon:

SVG to PNG time per icon

256 px 1024 px matches resvg at 256 px (strict)
pillow-lunasvg 1.00 ms 12.56 ms 99.0% of icons
resvg-py 0.5.0 2.84 ms 34.85 ms (reference)
cairosvg 2.9.1 2.17 ms 23.63 ms 99.4% of icons
  • 2.8× faster than resvg-py and 2.2× faster than cairosvg at 256 px (2.8× and 1.9× at 1024 px). Most of pillow-lunasvg's time is Pillow's PNG encoder: rendering alone takes 0.11 ms at 256 px and 0.88 ms at 1024 px.
  • Where it loses: on resvg's feature test suite (1,341 files, text excluded) only 59% of pillow-lunasvg renders match resvg (cairosvg: 53%). Filters are not implemented (17–21% of filter tests match), and neither are SVG inside <image>, WebP images, the CSS transform property, transform-origin, mix-blend-mode and context-fill. Filter tests are left out of the timings, because only resvg does that work.
  • Wheels are 259–467 KB (1.4 MB on musllinux, which bundles libstdc++) and need no system libraries. resvg-py wheels are 1.2–1.6 MB, also self-contained; cairosvg needs the system cairo library.

Methodology, per-category fidelity, observed failure causes, sample renders and exact commands: benchmarks/results.md.

What is supported

LunaSVG covers most of SVG 1.1 and SVG Tiny 1.2 static content: shapes and paths, fills and strokes (dashes, caps, joins, markers), linear and radial gradients, patterns, clipping paths and masks, <use> and <symbol>, nested <svg>, transforms, opacity, CSS <style> sheets and style attributes, <text> with system or registered fonts, and embedded raster images in data: URIs.

Not supported:

  • filters (<filter>, e.g. feGaussianBlur drop shadows): the element is drawn without the filter effect;
  • animation (SMIL) and scripts;
  • external file references (<image href="photo.png">, external CSS or fonts), by design, see Security;
  • .svgz (gzip-compressed SVG);
  • saving SVG (read-only plugin);
  • draft(), per-call background colour, a standalone render() API;
  • PyPy, free-threaded CPython builds and Windows ARM64 wheels.

Open an issue if you need one of these.

Security

The plugin is meant to be usable for thumbnailing untrusted uploads. What it draws is pixel for pixel what LunaSVG draws, except where LunaSVG would crash or hang, and except that external file references are disabled.

  • External references are disabled at build time (LUNASVG_DISABLE_EXTERNAL_RESOURCES): an SVG cannot make the renderer read local files or URLs. Images embedded as data: URIs still render; they are decoded by the stb_image copy vendored in plutovg.
  • Pixel limits follow Image.MAX_IMAGE_PIXELS: Image.open and load(scale=) raise DecompressionBombWarning/DecompressionBombError like other Pillow formats. With the limit disabled, a size LunaSVG cannot allocate raises OSError.
  • Nesting depth is limited to 256 levels of elements, including depth added by <use> expansion (the renderer is recursive; deeper documents would overflow the stack). Deeper documents raise OSError.
  • <use> expansion is limited to 1 000 000 copied elements. A short chain of <use> elements, each copying a group that uses the previous one twice, otherwise expands exponentially; such documents raise OSError. Only the copies count: a document without <use> is never rejected for its size, however many elements it has. Self-referencing and mutually referencing <use> elements are skipped by LunaSVG.
  • Dashes are limited to about 2 000 000 per document: past that budget the remaining dashed strokes are drawn solid instead of hanging on a stroke-dasharray far smaller than the path. Below the budget the dashes are the ones LunaSVG would draw, whatever unit they are written in (% of the current viewport, em, ex, mm, ...).
  • XML entity expansion ("billion laughs") does not apply: LunaSVG skips the DOCTYPE internal subset and never expands custom entities.

These checks are tested against hostile inputs in a subprocess, but a renderer written in C++ is not a sandbox. For untrusted input, run rendering in a worker process with a timeout and a memory limit (for example resource.setrlimit(RLIMIT_AS, ...) in a multiprocessing worker, or your task queue's time and memory limits).

Thread safety

Safe to use from multiple threads. Parsing and rendering release the GIL, but all LunaSVG calls in a process are serialized by one lock (LunaSVG keeps a global font cache), so one render runs at a time per process. For parallel throughput, use processes.

License

MIT (see LICENSE). The wheel bundles:

  • LunaSVG, MIT;
  • plutovg, MIT; its rasterizer is derived from FreeType and is also under the FreeType License (FTL);
  • stb_image and related stb headers vendored in plutovg, MIT / public domain.

Their license texts ship inside every wheel (pillow_lunasvg-*.dist-info/licenses/).

Release files for pillow-lunasvg 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pillow-lunasvg 0.1.0
File Size Uploaded
pillow_lunasvg-0.1.0.tar.gz 304.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pillow-lunasvg 0.1.0
File
pillow_lunasvg-0.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
pillow_lunasvg-0.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pillow_lunasvg-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
pillow_lunasvg-0.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
pillow_lunasvg-0.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pillow_lunasvg-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pillow_lunasvg-0.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
pillow_lunasvg-0.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pillow_lunasvg-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pillow_lunasvg-0.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
pillow_lunasvg-0.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pillow_lunasvg-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.13+ x86-64 Details
pillow_lunasvg-0.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
pillow_lunasvg-0.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pillow_lunasvg-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.13+ x86-64 Details

Total release size:23.5 MB

Release files / pillow_lunasvg-0.1.0.tar.gz

Download URL pillow_lunasvg-0.1.0.tar.gz
Size 304.8 kB
Tags Source
SHA-256 checksum
How to use checksums
793eb7f7a6dacdd18a995eae84392395694d07c5cf6720f9d647f7af802376fe
BLAKE2b-256 checksum
How to use checksums
cc1307caa52e60f81008bb1ff27d787f400d31b8bf3866722f965ffa53b0d763
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp314-cp314-win_amd64.whl

Download URL pillow_lunasvg-0.1.0-cp314-cp314-win_amd64.whl
Size 491.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
6ec59abd0dabf63f45aa70dfe98913812a0f39868141624f62a8bd0daa4014aa
BLAKE2b-256 checksum
How to use checksums
363bea72b38cc0e638f8b7cdde16248d2897b26f3a0f524b96cde91ff68fdff4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0ca11d1cf76b32fddc5b0b2117f33cd40061adc6b7de0cc96dd814e3a76094af
BLAKE2b-256 checksum
How to use checksums
52fb51dcbc46f4b228fa7c904f0e6a7bebfe68a9386d1aab0dd38b4418e0a6c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4f2a21d4cc3ab89fdca3a84167d719e7fc111ecd9cc794188533377a9d9dce90
BLAKE2b-256 checksum
How to use checksums
6cd133bdb7cf4074efbed96e95242b83836f977aafeeede59d8d735b13d8a261
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 413.2 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4bc95f7427ceaf0ef702fe76475d5ac6011b3b30adbcd7cc5e1947a8afcdcd83
BLAKE2b-256 checksum
How to use checksums
09f8619b474d1a92b962e038d84747eba7369a1989858a7bb83060c63c55b7c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 379.1 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
26bd6558b53ad931c3909bd5d47662a3f0171aa458ab70d335072df96d4fb0eb
BLAKE2b-256 checksum
How to use checksums
556538f4026a0340bf4b4fd209449738fb998ad7f84dd8b18a1c69f80c0e315e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL pillow_lunasvg-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 266.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6b5a6f7efb78b9f1ee128598e937841604a0f322c58fab263c7880dd163ad331
BLAKE2b-256 checksum
How to use checksums
276ccf692b674653b459a0c3ef6fc70e9714c88f5793ce5306cd59e8e5ceae7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 290.0 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
52f4f9e354bce82c9e3d36abc561e39f541952ef50a4e2da994c103cb1ef607f
BLAKE2b-256 checksum
How to use checksums
b80a62a42a286741e38507f05b4bae78e0e32d24f65f38cd9c13c72d6f4f4b0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp313-cp313-win_amd64.whl

Download URL pillow_lunasvg-0.1.0-cp313-cp313-win_amd64.whl
Size 474.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
019bb6575d8739e1ced9ec83b67de4ba327e3cc61f6282b1565e5720f53e4725
BLAKE2b-256 checksum
How to use checksums
c849b740e5aac304965175ce8447711baa240d734ecd13892f1c6a33db7cdbb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0f43483edb9bd0ca8151ef7688c313dc29e3ab6794f5cf421b29cd0c922945c6
BLAKE2b-256 checksum
How to use checksums
557a21694d8b08fcf7473b29242bd02d6088aeef07616a028aa6b2f1c81b121e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
aa64bbf70144fd006e564a67a68aa0c71062eb2968289e3df6580524720cc7bc
BLAKE2b-256 checksum
How to use checksums
d3c090ad27ee713c9dd6b2e919ba52fb56192b3dd66ceb8ccf4410c30bc267e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 413.0 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
018f371b5c2b6298b9a159867d58ef4864456c38f57d5336cf8af40c3723bd94
BLAKE2b-256 checksum
How to use checksums
19c5e8c812748398406b397d513a1b9c6eda2f3649313b9a8a4730035269db77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 378.6 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
26efedbeaa33ad0a860e8f6ffcdcd21d2a50f04e1ed7b5de213f3dc2de078cd3
BLAKE2b-256 checksum
How to use checksums
ea80fa11ebbfe31bb484b458e78b52003cca0952b999a5910bc1aab6467de4be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL pillow_lunasvg-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 265.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6117ee175fc23443e66f72ef226bb87bbe6418339adbc1f69d89e8f007b579be
BLAKE2b-256 checksum
How to use checksums
442fd38b58e88033d6ea96659ba1e4c045af5a624da0079f9a696a1fcda45cba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 289.7 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5967c82215328c2453a0557bfe701f55b3130c6b40f72653d0038da73241f6d4
BLAKE2b-256 checksum
How to use checksums
01e1724309ff716c269808632a39cbd42f99dc8ec357dceabffcd03a32a3d684
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp312-cp312-win_amd64.whl

Download URL pillow_lunasvg-0.1.0-cp312-cp312-win_amd64.whl
Size 474.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
543081233f14b7e7a667341708590853c0b6bce94fa521ff549550dc30707df0
BLAKE2b-256 checksum
How to use checksums
e4a73e66eeecbfadc8079838283b1b296cf856081791830f29aa8a174aa65590
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.5 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4001e6701e256eea3f5ffa3d7868f2f184a2894e695c6374b9913b5225553be1
BLAKE2b-256 checksum
How to use checksums
09e13b9eac6fc66fcf6c11815b9a0f7c7849a6ff896a6f4d3df7e3ac942ce43e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
dfc3c4e271dd651d275a51d8ee9c9b447164715c19e733e4f0e6ea2506fbcd72
BLAKE2b-256 checksum
How to use checksums
3ed3c4e0702396fcd6ead5ba6a5c829825802b5c1112013624a8d0e137bb8955
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 413.0 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
bf13e58a3b25d555bb06b42cc4795cd711e83929497aefc0d6b739eb9724bde3
BLAKE2b-256 checksum
How to use checksums
2bea3e0c267cde2f223a94cab7b28a1ebe2bdf7eb79cffe41b3b375cfae05f5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 378.5 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e05c613998a8c8c6fd3851c0d87c61b6683bcaee7227c0a28dc1ae86de0c2937
BLAKE2b-256 checksum
How to use checksums
1faae9e6bb21ed001200438423bc6f274c8a78f00a44d013de48fc5b49cf95d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL pillow_lunasvg-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 265.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c80c89d19b3c73b13aab42b0b850f61aea81e388b26419eb05b52effec3990dd
BLAKE2b-256 checksum
How to use checksums
09e79610735d947805fa53a1d3a1db5babc591044b4da2f74d1725a9e4ea68ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 289.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
6af27ea2608f60bf7fcecb63bc1f00886f3e43a7acc7aa56743456557c2f3442
BLAKE2b-256 checksum
How to use checksums
8a2f20349f730d2864f783841661051a6897552197f8fc3cd78522ee62fdf3d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp311-cp311-win_amd64.whl

Download URL pillow_lunasvg-0.1.0-cp311-cp311-win_amd64.whl
Size 474.0 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9083aebafe76f71798fb3a370d34b8313ae02061a87f178aa7a82c44d96aafff
BLAKE2b-256 checksum
How to use checksums
000df538176509a0325355d3e387322d37ca72785c435cdbaa6dac8a628d0986
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c4affdeb0f2a7a753a820149556225ecb1f3e9d357ddc77e5a95d94b655d8c7d
BLAKE2b-256 checksum
How to use checksums
27e3b9f076194ba9c1042e60255cb6e4713eb0bc1ca7811da66884466c13de3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b4027fe5a3dd8a801774f240d99fa3138b01fe9877c3c3b3e11631990264ee79
BLAKE2b-256 checksum
How to use checksums
8ec9508738b730be2c9770cccf40f9e690dc5d47abc64db0278df581cede5943
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 412.1 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
abf4da33c93218732f92c0a5be7e173b375e795c5b7bde709ef7daebd0139848
BLAKE2b-256 checksum
How to use checksums
b4b516346ce35ea16ae6075b1f417c160f3d57282c5cfe243421f97d4fd4b321
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 378.1 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
719d51ffe9cc22f325ba0506da3f7f23222281ced69494791612fc24c23507a3
BLAKE2b-256 checksum
How to use checksums
cfb91670faccc7cf3f40f7165d53ef4c3df84d82afd221e2531333f56f8a2b4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL pillow_lunasvg-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 265.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
797e8e4f64e6093ab5f7cc7e15975b3c3394a9734bf1f39ca2f6b4c0e6d6a2ce
BLAKE2b-256 checksum
How to use checksums
92340c57153a3e64e00f49e408cbfd97d23b83e540e6d5de3a45828815f70c78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Size 288.9 kB
Tags CPython 3.11 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
8889864acdc09a4272b2a293a63875cd13c0fc41167a8c0f4b19e5e4c9fd42b2
BLAKE2b-256 checksum
How to use checksums
4113c38bf2b9b7df1f346f06c8d06f62eb7b0b12ae2eb3936fd5bb319ab3730d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp310-cp310-win_amd64.whl

Download URL pillow_lunasvg-0.1.0-cp310-cp310-win_amd64.whl
Size 473.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
addeded887e9dad49fbc78d724072e979ecd48955993bf9507c8b17e57dcb78a
BLAKE2b-256 checksum
How to use checksums
42c13fb9bf1fa4b7a63f781b85a55788eaa5740a687ddefc19e4fb45e03fb41b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.4 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3d3cefb8007412b2ccfb416ebb4219b396c6cca2685896fa8ad8275822c2b8ca
BLAKE2b-256 checksum
How to use checksums
d6044c4ebb5e6997b10c83b836cef858eb58809c3ba03260e2500d5843634fd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.4 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bfc2cefbdf7b313e91f0663eafaac806899bf9d182a285f3ed09770144d20efb
BLAKE2b-256 checksum
How to use checksums
f67dbbe9aa0b1a654f965f57f0fd30c0bd2b93e2dc1bd70ec8d61e3be650f21a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 410.9 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2c29d80a605e945de09d98c6e6d27c67645f8442cc11f6c3befa53d846d55dc1
BLAKE2b-256 checksum
How to use checksums
64cac722ea8d378b3c60f50290979bc705670db284696d247ce1e8d9e8b9c052
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 377.2 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a2c033672dfb78e435232c03ce378f90d9b7832255866c849e2e902fcb21e5cc
BLAKE2b-256 checksum
How to use checksums
0b233fe449a1ba101908660775841244af4cb1e797e60b62de8ef5f58e723f46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL pillow_lunasvg-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 264.0 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1eeca0a638fd43ef28766661300aafe88abfc6ef4e64fb34c436381a4a7dcf7c
BLAKE2b-256 checksum
How to use checksums
bfff2e4add54bd9d612f86b05be78e51899a78abb1fc11af57c3b9d4b773d2f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release files / pillow_lunasvg-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl

Download URL pillow_lunasvg-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl
Size 287.5 kB
Tags CPython 3.10 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
cc3e2eec88b76b144294e54e00ccb3108ee853158d03d5956e4b6e2b594af445
BLAKE2b-256 checksum
How to use checksums
61492b7a5992ccc716ffdf23f89d2b123c7db31e062e4f50b50f7bfb02de5c97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 17, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.0 This release

36 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page