pillow-lunasvg
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:
| 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 CSStransformproperty,transform-origin,mix-blend-modeandcontext-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.feGaussianBlurdrop 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 standalonerender()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 asdata:URIs still render; they are decoded by the stb_image copy vendored in plutovg. - Pixel limits follow
Image.MAX_IMAGE_PIXELS:Image.openandload(scale=)raiseDecompressionBombWarning/DecompressionBombErrorlike other Pillow formats. With the limit disabled, a size LunaSVG cannot allocate raisesOSError. - 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 raiseOSError. <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 raiseOSError. 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-dasharrayfar 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/).
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 pillow_lunasvg-0.1.0.tar.gz.
File metadata
- Download URL: pillow_lunasvg-0.1.0.tar.gz
- Upload date:
- Size: 304.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
793eb7f7a6dacdd18a995eae84392395694d07c5cf6720f9d647f7af802376fe
|
|
| MD5 |
b343301c3cd705ad1c133ac447ba27c5
|
|
| BLAKE2b-256 |
cc1307caa52e60f81008bb1ff27d787f400d31b8bf3866722f965ffa53b0d763
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0.tar.gz:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0.tar.gz -
Subject digest:
793eb7f7a6dacdd18a995eae84392395694d07c5cf6720f9d647f7af802376fe - Sigstore transparency entry: 2874385196
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 491.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ec59abd0dabf63f45aa70dfe98913812a0f39868141624f62a8bd0daa4014aa
|
|
| MD5 |
588dc0203bce03f41ab0383d7f185dd4
|
|
| BLAKE2b-256 |
363bea72b38cc0e638f8b7cdde16248d2897b26f3a0f524b96cde91ff68fdff4
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp314-cp314-win_amd64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp314-cp314-win_amd64.whl -
Subject digest:
6ec59abd0dabf63f45aa70dfe98913812a0f39868141624f62a8bd0daa4014aa - Sigstore transparency entry: 2874401516
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ca11d1cf76b32fddc5b0b2117f33cd40061adc6b7de0cc96dd814e3a76094af
|
|
| MD5 |
d456d3819236effc0174640af76d4cc8
|
|
| BLAKE2b-256 |
52fb51dcbc46f4b228fa7c904f0e6a7bebfe68a9386d1aab0dd38b4418e0a6c2
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
0ca11d1cf76b32fddc5b0b2117f33cd40061adc6b7de0cc96dd814e3a76094af - Sigstore transparency entry: 2874386115
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f2a21d4cc3ab89fdca3a84167d719e7fc111ecd9cc794188533377a9d9dce90
|
|
| MD5 |
d53021c016558aa2ba2de18a6fdb6004
|
|
| BLAKE2b-256 |
6cd133bdb7cf4074efbed96e95242b83836f977aafeeede59d8d735b13d8a261
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
4f2a21d4cc3ab89fdca3a84167d719e7fc111ecd9cc794188533377a9d9dce90 - Sigstore transparency entry: 2874390151
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 413.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bc95f7427ceaf0ef702fe76475d5ac6011b3b30adbcd7cc5e1947a8afcdcd83
|
|
| MD5 |
cc908af599ac8100059a3efb96aaa09c
|
|
| BLAKE2b-256 |
09f8619b474d1a92b962e038d84747eba7369a1989858a7bb83060c63c55b7c1
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
4bc95f7427ceaf0ef702fe76475d5ac6011b3b30adbcd7cc5e1947a8afcdcd83 - Sigstore transparency entry: 2874398700
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 379.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26bd6558b53ad931c3909bd5d47662a3f0171aa458ab70d335072df96d4fb0eb
|
|
| MD5 |
5ba4d38bdf8786da1d9c3503fcaa449e
|
|
| BLAKE2b-256 |
556538f4026a0340bf4b4fd209449738fb998ad7f84dd8b18a1c69f80c0e315e
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl -
Subject digest:
26bd6558b53ad931c3909bd5d47662a3f0171aa458ab70d335072df96d4fb0eb - Sigstore transparency entry: 2874400928
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 266.0 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b5a6f7efb78b9f1ee128598e937841604a0f322c58fab263c7880dd163ad331
|
|
| MD5 |
ae456b7afb48154b9ef9610311f0bdb4
|
|
| BLAKE2b-256 |
276ccf692b674653b459a0c3ef6fc70e9714c88f5793ce5306cd59e8e5ceae7d
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
6b5a6f7efb78b9f1ee128598e937841604a0f322c58fab263c7880dd163ad331 - Sigstore transparency entry: 2874387755
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 290.0 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52f4f9e354bce82c9e3d36abc561e39f541952ef50a4e2da994c103cb1ef607f
|
|
| MD5 |
4e79cc6969e94e97a2aed8cb065cd3e2
|
|
| BLAKE2b-256 |
b80a62a42a286741e38507f05b4bae78e0e32d24f65f38cd9c13c72d6f4f4b0c
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
52f4f9e354bce82c9e3d36abc561e39f541952ef50a4e2da994c103cb1ef607f - Sigstore transparency entry: 2874388432
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 474.7 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
019bb6575d8739e1ced9ec83b67de4ba327e3cc61f6282b1565e5720f53e4725
|
|
| MD5 |
fc65f273403887f69e23c8f2f3d8be8b
|
|
| BLAKE2b-256 |
c849b740e5aac304965175ce8447711baa240d734ecd13892f1c6a33db7cdbb2
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
019bb6575d8739e1ced9ec83b67de4ba327e3cc61f6282b1565e5720f53e4725 - Sigstore transparency entry: 2874399993
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f43483edb9bd0ca8151ef7688c313dc29e3ab6794f5cf421b29cd0c922945c6
|
|
| MD5 |
08970ca20b7829868ba933237e1e2a3d
|
|
| BLAKE2b-256 |
557a21694d8b08fcf7473b29242bd02d6088aeef07616a028aa6b2f1c81b121e
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
0f43483edb9bd0ca8151ef7688c313dc29e3ab6794f5cf421b29cd0c922945c6 - Sigstore transparency entry: 2874389477
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa64bbf70144fd006e564a67a68aa0c71062eb2968289e3df6580524720cc7bc
|
|
| MD5 |
fdbf733ba41c7365c67bf724d2cf3e6b
|
|
| BLAKE2b-256 |
d3c090ad27ee713c9dd6b2e919ba52fb56192b3dd66ceb8ccf4410c30bc267e0
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
aa64bbf70144fd006e564a67a68aa0c71062eb2968289e3df6580524720cc7bc - Sigstore transparency entry: 2874400198
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 413.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
018f371b5c2b6298b9a159867d58ef4864456c38f57d5336cf8af40c3723bd94
|
|
| MD5 |
a9a5088cf1ae6c34f1f6591b415b7486
|
|
| BLAKE2b-256 |
19c5e8c812748398406b397d513a1b9c6eda2f3649313b9a8a4730035269db77
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
018f371b5c2b6298b9a159867d58ef4864456c38f57d5336cf8af40c3723bd94 - Sigstore transparency entry: 2874400423
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 378.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26efedbeaa33ad0a860e8f6ffcdcd21d2a50f04e1ed7b5de213f3dc2de078cd3
|
|
| MD5 |
ef77d937424addb5c8eef4942a580c66
|
|
| BLAKE2b-256 |
ea80fa11ebbfe31bb484b458e78b52003cca0952b999a5910bc1aab6467de4be
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
26efedbeaa33ad0a860e8f6ffcdcd21d2a50f04e1ed7b5de213f3dc2de078cd3 - Sigstore transparency entry: 2874399681
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 265.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6117ee175fc23443e66f72ef226bb87bbe6418339adbc1f69d89e8f007b579be
|
|
| MD5 |
82b1c676da48fda0560122aed6329125
|
|
| BLAKE2b-256 |
442fd38b58e88033d6ea96659ba1e4c045af5a624da0079f9a696a1fcda45cba
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
6117ee175fc23443e66f72ef226bb87bbe6418339adbc1f69d89e8f007b579be - Sigstore transparency entry: 2874390364
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 289.7 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5967c82215328c2453a0557bfe701f55b3130c6b40f72653d0038da73241f6d4
|
|
| MD5 |
53109b197c4fc718656eb77bce17c798
|
|
| BLAKE2b-256 |
01e1724309ff716c269808632a39cbd42f99dc8ec357dceabffcd03a32a3d684
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
5967c82215328c2453a0557bfe701f55b3130c6b40f72653d0038da73241f6d4 - Sigstore transparency entry: 2874395203
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 474.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
543081233f14b7e7a667341708590853c0b6bce94fa521ff549550dc30707df0
|
|
| MD5 |
24636ea71c2887e12b9d6b79dfd11ebe
|
|
| BLAKE2b-256 |
e4a73e66eeecbfadc8079838283b1b296cf856081791830f29aa8a174aa65590
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
543081233f14b7e7a667341708590853c0b6bce94fa521ff549550dc30707df0 - Sigstore transparency entry: 2874388779
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4001e6701e256eea3f5ffa3d7868f2f184a2894e695c6374b9913b5225553be1
|
|
| MD5 |
7ac37d8b40964d41270ccf629a4866bb
|
|
| BLAKE2b-256 |
09e13b9eac6fc66fcf6c11815b9a0f7c7849a6ff896a6f4d3df7e3ac942ce43e
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
4001e6701e256eea3f5ffa3d7868f2f184a2894e695c6374b9913b5225553be1 - Sigstore transparency entry: 2874398990
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dfc3c4e271dd651d275a51d8ee9c9b447164715c19e733e4f0e6ea2506fbcd72
|
|
| MD5 |
421c7b27d2a8c81a8cd28da2f4438e8a
|
|
| BLAKE2b-256 |
3ed3c4e0702396fcd6ead5ba6a5c829825802b5c1112013624a8d0e137bb8955
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
dfc3c4e271dd651d275a51d8ee9c9b447164715c19e733e4f0e6ea2506fbcd72 - Sigstore transparency entry: 2874399240
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 413.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf13e58a3b25d555bb06b42cc4795cd711e83929497aefc0d6b739eb9724bde3
|
|
| MD5 |
5d177238dc02e6f7a0510f196bf82b4d
|
|
| BLAKE2b-256 |
2bea3e0c267cde2f223a94cab7b28a1ebe2bdf7eb79cffe41b3b375cfae05f5c
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
bf13e58a3b25d555bb06b42cc4795cd711e83929497aefc0d6b739eb9724bde3 - Sigstore transparency entry: 2874397029
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 378.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e05c613998a8c8c6fd3851c0d87c61b6683bcaee7227c0a28dc1ae86de0c2937
|
|
| MD5 |
6ccdb2e6fb10678ea72d0fa2a8ca8426
|
|
| BLAKE2b-256 |
1faae9e6bb21ed001200438423bc6f274c8a78f00a44d013de48fc5b49cf95d2
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
e05c613998a8c8c6fd3851c0d87c61b6683bcaee7227c0a28dc1ae86de0c2937 - Sigstore transparency entry: 2874393105
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 265.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c80c89d19b3c73b13aab42b0b850f61aea81e388b26419eb05b52effec3990dd
|
|
| MD5 |
e57b12e58d44efa116a943e9e5025c48
|
|
| BLAKE2b-256 |
09e79610735d947805fa53a1d3a1db5babc591044b4da2f74d1725a9e4ea68ab
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
c80c89d19b3c73b13aab42b0b850f61aea81e388b26419eb05b52effec3990dd - Sigstore transparency entry: 2874390722
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 289.6 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6af27ea2608f60bf7fcecb63bc1f00886f3e43a7acc7aa56743456557c2f3442
|
|
| MD5 |
5424deffc1933be29e4c617a6f3b7882
|
|
| BLAKE2b-256 |
8a2f20349f730d2864f783841661051a6897552197f8fc3cd78522ee62fdf3d9
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
6af27ea2608f60bf7fcecb63bc1f00886f3e43a7acc7aa56743456557c2f3442 - Sigstore transparency entry: 2874391325
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 474.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9083aebafe76f71798fb3a370d34b8313ae02061a87f178aa7a82c44d96aafff
|
|
| MD5 |
96cbfe46dfcd763f4203fe4105a5786a
|
|
| BLAKE2b-256 |
000df538176509a0325355d3e387322d37ca72785c435cdbaa6dac8a628d0986
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
9083aebafe76f71798fb3a370d34b8313ae02061a87f178aa7a82c44d96aafff - Sigstore transparency entry: 2874398423
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4affdeb0f2a7a753a820149556225ecb1f3e9d357ddc77e5a95d94b655d8c7d
|
|
| MD5 |
5900c5d9e4eb86cddc1bef97c34fffd5
|
|
| BLAKE2b-256 |
27e3b9f076194ba9c1042e60255cb6e4713eb0bc1ca7811da66884466c13de3d
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
c4affdeb0f2a7a753a820149556225ecb1f3e9d357ddc77e5a95d94b655d8c7d - Sigstore transparency entry: 2874391728
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4027fe5a3dd8a801774f240d99fa3138b01fe9877c3c3b3e11631990264ee79
|
|
| MD5 |
04ea1c948afdcad8724e08dc9d735669
|
|
| BLAKE2b-256 |
8ec9508738b730be2c9770cccf40f9e690dc5d47abc64db0278df581cede5943
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
b4027fe5a3dd8a801774f240d99fa3138b01fe9877c3c3b3e11631990264ee79 - Sigstore transparency entry: 2874390545
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 412.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abf4da33c93218732f92c0a5be7e173b375e795c5b7bde709ef7daebd0139848
|
|
| MD5 |
0553c7bf375e1d27cec9b50df64303cf
|
|
| BLAKE2b-256 |
b4b516346ce35ea16ae6075b1f417c160f3d57282c5cfe243421f97d4fd4b321
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
abf4da33c93218732f92c0a5be7e173b375e795c5b7bde709ef7daebd0139848 - Sigstore transparency entry: 2874388144
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 378.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
719d51ffe9cc22f325ba0506da3f7f23222281ced69494791612fc24c23507a3
|
|
| MD5 |
df973b974afc6d6565cf877481fa11f9
|
|
| BLAKE2b-256 |
cfb91670faccc7cf3f40f7165d53ef4c3df84d82afd221e2531333f56f8a2b4d
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
719d51ffe9cc22f325ba0506da3f7f23222281ced69494791612fc24c23507a3 - Sigstore transparency entry: 2874392331
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 265.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
797e8e4f64e6093ab5f7cc7e15975b3c3394a9734bf1f39ca2f6b4c0e6d6a2ce
|
|
| MD5 |
b816ccfeafe461b05d4a3fbecb7a74d9
|
|
| BLAKE2b-256 |
92340c57153a3e64e00f49e408cbfd97d23b83e540e6d5de3a45828815f70c78
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
797e8e4f64e6093ab5f7cc7e15975b3c3394a9734bf1f39ca2f6b4c0e6d6a2ce - Sigstore transparency entry: 2874386289
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl
- Upload date:
- Size: 288.9 kB
- Tags: CPython 3.11, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8889864acdc09a4272b2a293a63875cd13c0fc41167a8c0f4b19e5e4c9fd42b2
|
|
| MD5 |
39d80b8442f3ba860bb72b0ab0149962
|
|
| BLAKE2b-256 |
4113c38bf2b9b7df1f346f06c8d06f62eb7b0b12ae2eb3936fd5bb319ab3730d
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp311-cp311-macosx_10_13_x86_64.whl -
Subject digest:
8889864acdc09a4272b2a293a63875cd13c0fc41167a8c0f4b19e5e4c9fd42b2 - Sigstore transparency entry: 2874398127
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 473.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
addeded887e9dad49fbc78d724072e979ecd48955993bf9507c8b17e57dcb78a
|
|
| MD5 |
0311e2e53778983dde4b8b64d8a68138
|
|
| BLAKE2b-256 |
42c13fb9bf1fa4b7a63f781b85a55788eaa5740a687ddefc19e4fb45e03fb41b
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
addeded887e9dad49fbc78d724072e979ecd48955993bf9507c8b17e57dcb78a - Sigstore transparency entry: 2874394023
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d3cefb8007412b2ccfb416ebb4219b396c6cca2685896fa8ad8275822c2b8ca
|
|
| MD5 |
4c704462b952f1a811386c137a808ab6
|
|
| BLAKE2b-256 |
d6044c4ebb5e6997b10c83b836cef858eb58809c3ba03260e2500d5843634fd2
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
3d3cefb8007412b2ccfb416ebb4219b396c6cca2685896fa8ad8275822c2b8ca - Sigstore transparency entry: 2874399865
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfc2cefbdf7b313e91f0663eafaac806899bf9d182a285f3ed09770144d20efb
|
|
| MD5 |
4631ff4bad557dbcc86be342e0a1828e
|
|
| BLAKE2b-256 |
f67dbbe9aa0b1a654f965f57f0fd30c0bd2b93e2dc1bd70ec8d61e3be650f21a
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
bfc2cefbdf7b313e91f0663eafaac806899bf9d182a285f3ed09770144d20efb - Sigstore transparency entry: 2874401293
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 410.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c29d80a605e945de09d98c6e6d27c67645f8442cc11f6c3befa53d846d55dc1
|
|
| MD5 |
d8658dc91c8a30c8ee4e191d2e2f6ecf
|
|
| BLAKE2b-256 |
64cac722ea8d378b3c60f50290979bc705670db284696d247ce1e8d9e8b9c052
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
2c29d80a605e945de09d98c6e6d27c67645f8442cc11f6c3befa53d846d55dc1 - Sigstore transparency entry: 2874389750
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 377.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2c033672dfb78e435232c03ce378f90d9b7832255866c849e2e902fcb21e5cc
|
|
| MD5 |
83fe93a59b956a49bd9a707720da9102
|
|
| BLAKE2b-256 |
0b233fe449a1ba101908660775841244af4cb1e797e60b62de8ef5f58e723f46
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
a2c033672dfb78e435232c03ce378f90d9b7832255866c849e2e902fcb21e5cc - Sigstore transparency entry: 2874387226
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 264.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1eeca0a638fd43ef28766661300aafe88abfc6ef4e64fb34c436381a4a7dcf7c
|
|
| MD5 |
c6a1cf049027c3e3b93ed53b0b7a458f
|
|
| BLAKE2b-256 |
bfff2e4add54bd9d612f86b05be78e51899a78abb1fc11af57c3b9d4b773d2f1
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
1eeca0a638fd43ef28766661300aafe88abfc6ef4e64fb34c436381a4a7dcf7c - Sigstore transparency entry: 2874399486
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pillow_lunasvg-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pillow_lunasvg-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl
- Upload date:
- Size: 287.5 kB
- Tags: CPython 3.10, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc3e2eec88b76b144294e54e00ccb3108ee853158d03d5956e4b6e2b594af445
|
|
| MD5 |
3cd97fb01c2fcb9e7e5d777a048e5a62
|
|
| BLAKE2b-256 |
61492b7a5992ccc716ffdf23f89d2b123c7db31e062e4f50b50f7bfb02de5c97
|
Provenance
The following attestation bundles were made for pillow_lunasvg-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on Maksim-Burtsev/pillow-lunasvg
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pillow_lunasvg-0.1.0-cp310-cp310-macosx_10_13_x86_64.whl -
Subject digest:
cc3e2eec88b76b144294e54e00ccb3108ee853158d03d5956e4b6e2b594af445 - Sigstore transparency entry: 2874390989
- Sigstore integration time:
-
Permalink:
Maksim-Burtsev/pillow-lunasvg@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/Maksim-Burtsev
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@78f7053ba6022adf22c47cc53eaae3c2eaa7c381 -
Trigger Event:
push
-
Statement type: