Render HTML, Markdown, and node trees to images without a browser (Takumi Python bindings).
Project description
pytakumi
Python bindings for Takumi — a Rust layout engine that turns HTML, Markdown, and node trees into images without a headless browser.
| Upstream engine | kane50613/takumi · docs takumi.kane.tw/docs |
| This repo | PyO3 / maturin bindings + high-level helpers (html_to_pic / text_to_pic / md_to_pic) |
| Python | 3.10 – 3.14 (GIL) and free-threaded 3.14t (not 3.13t) |
| Platforms | Windows / macOS / Linux (x86_64 & ARM64; manylinux and musllinux) |
| License | MIT OR Apache-2.0 (same dual license as Takumi) |
pytakumi/ ← this project (Python package name: pytakumi)
vendor/takumi/ ← git submodule → github.com/kane50613/takumi
src/ ← Rust FFI (PyO3)
python/pytakumi/ ← Python API + templates
The engine is compiled into the native extension at build time. End users of a published wheel do not need Rust, a browser, or the submodule.
Not a browser. No JavaScript, no full CSSOM, no arbitrary live websites. Best for OG cards, Markdown documents, bot messages, and controlled HTML/CSS templates. Prefer Playwright when you need Chromium fidelity.
Install
pip install pytakumi
pip install "pytakumi[markdown]" # optional: better Markdown via markdown-it-py
Note: PyPI publish is optional/CI-driven. Until wheels are published, install from source (below).
From source
git clone --recurse-submodules <this-repo-url> pytakumi
cd pytakumi
python -m venv .venv
# Windows: .\.venv\Scripts\Activate.ps1
source .venv/bin/activate
pip install maturin pytest markdown-it-py
maturin develop --release
pytest -q
Requirements: Rust 1.91+ (rust-toolchain.toml), Python ≥ 3.10, submodule initialized:
git submodule update --init --recursive
Engine pin lives at vendor/takumi — see docs/SUBMODULE.md.
Quick start
High-level helpers (recommended)
from pytakumi import html_to_pic, text_to_pic, md_to_pic
# 1) HTML fragment → PNG
open("hello.png", "wb").write(
html_to_pic(
"""
<div style="width:100%;height:100%;display:flex;align-items:center;
justify-content:center;background:#0f172a;color:#fff;
font-size:48px">Hello pytakumi</div>
""",
width=800,
height=400,
)
)
# 2) Plain text card template (dark / light)
open("text.png", "wb").write(
text_to_pic(
"服务正常\n延迟 12ms",
title="巡检日报",
eyebrow="STATUS",
footer="pytakumi",
theme="dark",
width=720,
)
)
# 3) Markdown → image (GitHub README-style CSS template)
open("md.png", "wb").write(
md_to_pic(
"""# Report
Status: **ok**
- item A
- item B
```python
print("hi")
""", width=800, ) )
### Low-level `Renderer` (cache reuse)
```python
from pytakumi import Renderer, from_html
r = Renderer(cache_max_bytes=64 * 1024 * 1024)
r.register_font(open("NotoSansSC-Regular.otf", "rb").read(), name="Noto Sans SC")
png = r.render_html(
'<div style="font-family:Noto Sans SC;font-size:40px;padding:40px">你好</div>',
width=400,
height=120,
)
# Parse once, render many times
tree = from_html('<div class="card">Hi</div>')
png = r.render(tree, width=400, height=200, stylesheets=[".card{padding:24px;color:#111}"])
Formats
| Kind | Values |
|---|---|
| Static | png (default), jpeg, webp, ico, raw |
| Animation | webp, apng, gif via Renderer.render_animation |
| Vector | Renderer.render_svg → SVG string |
API surface
| Symbol | Role |
|---|---|
html_to_pic |
HTML document/fragment → image bytes |
text_to_pic |
Plain text + card template → image |
md_to_pic |
Markdown + GitHub-style template → image |
render_markdown |
Alias of md_to_pic (compat) |
Renderer |
Cached engine: render, render_html, render_svg, measure, render_animation, register_font |
from_html / NodeTree |
HTML → opaque node tree |
container / text_node / image_node |
Build trees in Python |
render / render_html |
One-shot helpers (new ephemeral renderer) |
set_glyph_cache_max_bytes |
Process-wide glyph cache (call before first render) |
Templates for Markdown/text live under python/pytakumi/templates/.
Fonts
Only a Latin last-resort face is embedded. Register CJK and other faces yourself:
from pytakumi import Renderer, set_glyph_cache_max_bytes
set_glyph_cache_max_bytes(64 * 1024 * 1024) # before first render for CJK
r = Renderer()
r.register_font(open("msyh.ttc", "rb").read(), name="Microsoft YaHei")
Reuse one Renderer per process/worker so fonts and image caches stay warm.
Origin & relationship to Takumi
| Piece | Source |
|---|---|
| Layout / CSS / raster / SVG engine | kane50613/takumi (Rust monorepo) |
| Official docs / playground | takumi.kane.tw |
| Node / WASM bindings (upstream) | takumi-js, @takumi-rs/core, @takumi-rs/wasm |
| This project | Independent Python packaging: submodule pin + PyO3 + helpers |
pytakumi is not an official release of the Takumi authors unless they adopt it. Engine updates:
cd vendor/takumi && git fetch && git checkout <tag-or-commit>
cd ../.. && git add vendor/takumi && git commit -m "chore: bump engine"
maturin develop --release && pytest -q
See docs/SUBMODULE.md, docs/PACKAGING.md, docs/FOOTPRINT.md.
Development
maturin develop --release
pytest -q
cargo clippy --all-targets -- -D warnings
Tests (product suite)
117+ cases covering formats, layout geometry (raw-pixel probes), fonts, images, HTML/CSS, animation, SVG, measure, high-level APIs, concurrency, errors, and utilities.
pytest -q
# see tests/README.md for module map
| Area | Modules |
|---|---|
| Formats / density / dither | test_formats_all.py |
| Geometry & color correctness | test_layout_geometry.py (uses format=raw) |
| Images (dict/list/data-URL/bytes) | test_images.py |
| Fonts | test_fonts.py |
| HTML advanced | test_html_advanced.py |
| Animation gif/apng/webp | test_animation.py |
html_to_pic / text_to_pic / md_to_pic |
test_api_product.py |
| Thread-pool concurrency | test_concurrency.py |
| Errors & invalid inputs | test_errors.py |
| Package exports | test_package.py |
| … | plus markdown/nodes/svg/measure/util/legacy files |
CI fails if collected tests drop below 80. Free-threaded 3.14t is supported (gil_used=false, shared Renderer is thread-safe; see tests/test_concurrency.py). Still out of scope: free-threaded 3.13t, full Chromium visual SSIM, and multi-arch green without Actions.
Benchmarks
pip install -e ".[bench]"
playwright install chromium # optional
python benchmarks/run_bench.py --iters 10 --workers 4 --jobs 8
Primary fixture: Desktop stamina_card.html_test2.html (1150×850). See docs/BENCHMARKS.md.
CI / CD
| Workflow | Purpose |
|---|---|
.github/workflows/ci.yml |
Lint + Ubuntu/Windows/macOS × Python 3.10–3.14 (+ Linux 3.14t) source build + pytest; Clippy; Linux wheel smoke |
.github/workflows/wheels.yml |
cibuildwheel: CPython 3.10–3.14 and cp314t × (x86_64 & ARM64); Linux manylinux+musllinux; each wheel is pytest’d; sdist; PyPI on v* tags |
Wheel matrix details and free-threaded policy: docs/PACKAGING.md.
Checkout uses submodules: recursive (no separate engine clone).
Gaps to be aware of:
- Publish job needs a GitHub
pypienvironment + Trusted Publisher config. - Some runners (e.g. Windows ARM) may be unavailable on free tiers.
- Wheel jobs on every PR can be heavy; tag/
workflow_dispatchis the practical release path.
Layout vs Playwright
| pytakumi (Takumi engine) | Playwright | |
|---|---|---|
| Startup | Library load | Browser process |
| Memory | Low (caches configurable) | High |
| HTML/CSS | Subset, static | Full browser |
| JavaScript | No | Yes |
| Best for | Cards, Markdown, templates | Arbitrary live pages |
License
MIT OR Apache-2.0 — see LICENSE-MIT and LICENSE-APACHE.
Upstream engine: kane50613/takumi (MIT OR Apache-2.0).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytakumi-0.1.0.tar.gz.
File metadata
- Download URL: pytakumi-0.1.0.tar.gz
- Upload date:
- Size: 50.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c21189db05fc4fb25c5b402e8de6a8d0b583b8120985193acd34d68ed35f628d
|
|
| MD5 |
22f0cc4ac0cfaa2cd96b9319a81491f0
|
|
| BLAKE2b-256 |
f6f8d3766bf3e6291d755c1d054bd09066b4ededf00b5931b4d454ef1e967fdb
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0.tar.gz:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0.tar.gz -
Subject digest:
c21189db05fc4fb25c5b402e8de6a8d0b583b8120985193acd34d68ed35f628d - Sigstore transparency entry: 2256540891
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
697b55ede028af6e86efa5264a5254088696fc84536289d5d3c6033e8307a26f
|
|
| MD5 |
fba0c54c0b7225a8d463b92347eba268
|
|
| BLAKE2b-256 |
ec1261ae5f5e435594bed8e5ad22789ba4b75f3f4cc12936743aa835abde9918
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-win_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-win_arm64.whl -
Subject digest:
697b55ede028af6e86efa5264a5254088696fc84536289d5d3c6033e8307a26f - Sigstore transparency entry: 2256541073
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
376092af10fd5d6680a228bf29b7ffd83fff322bd82ffd5e49ce9da201b8cd27
|
|
| MD5 |
01d46d254fe4aef9931c84c0b2fbae93
|
|
| BLAKE2b-256 |
a983c3e3961387df6b09bb175cb875554a6f64177c3751f5a02717f77c9db036
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-win_amd64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-win_amd64.whl -
Subject digest:
376092af10fd5d6680a228bf29b7ffd83fff322bd82ffd5e49ce9da201b8cd27 - Sigstore transparency entry: 2256540914
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e20881a5d74221aff2c70369fcce59306355387675d9975a11801993969b50eb
|
|
| MD5 |
3eda7bc64c63579ebf380b2b5b773ae3
|
|
| BLAKE2b-256 |
c7b0900b10c283f12c47c1c8b2d4a64a47dc8e5f3719e5ca8d60d38eb8805364
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
e20881a5d74221aff2c70369fcce59306355387675d9975a11801993969b50eb - Sigstore transparency entry: 2256541068
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3e7ac176b996ae3f9c286e3904e25a5bbc9427a7b1581722fbd79d300f3e826
|
|
| MD5 |
782b999532331f9e2f2c031cc5db1405
|
|
| BLAKE2b-256 |
d5e85f0697d3de5fad2d14681b5ae10fd6d17589f9dfccf3e07f2a6ca44af496
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
e3e7ac176b996ae3f9c286e3904e25a5bbc9427a7b1581722fbd79d300f3e826 - Sigstore transparency entry: 2256541083
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32cebdebbf92d6ed96b78ee3959c366fdacadeb8dd1543579ab7d348be4cdb0a
|
|
| MD5 |
add08b66c9e6c363d4625f07f9268d69
|
|
| BLAKE2b-256 |
6177344fa8aa5ee7e8a6b3b465f9ac69bce43069769ceb71fd93c87c64c547b1
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_x86_64.whl -
Subject digest:
32cebdebbf92d6ed96b78ee3959c366fdacadeb8dd1543579ab7d348be4cdb0a - Sigstore transparency entry: 2256541023
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e487809f8d6200c3d8ebebcde0d688e091709c29f33c544d3521ac3be0ef175e
|
|
| MD5 |
5934f0be747d5f711a0c0bb9920fbbfc
|
|
| BLAKE2b-256 |
102ca4d7248a94b3296dcbc6e9f5238d8361d13512df8fb4f8e0e16e49882c5e
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-manylinux_2_28_aarch64.whl -
Subject digest:
e487809f8d6200c3d8ebebcde0d688e091709c29f33c544d3521ac3be0ef175e - Sigstore transparency entry: 2256540999
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5267b11c2776cd3cff00c25ba2d364ac60874bbc76dce44d4c1b2abb48444ff
|
|
| MD5 |
a678df6ea3aa4bdc581a43141c1216d0
|
|
| BLAKE2b-256 |
4822c0d4bc45f316dee4639d63bd936b2f52173902ee43b53a7aed700e482441
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-macosx_11_0_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-macosx_11_0_x86_64.whl -
Subject digest:
c5267b11c2776cd3cff00c25ba2d364ac60874bbc76dce44d4c1b2abb48444ff - Sigstore transparency entry: 2256541149
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e6b445a01649b35abe83c9ef6743dabd4600605c15d84433010b6d1763060ec
|
|
| MD5 |
06d18817ab365316331e88fbc8038691
|
|
| BLAKE2b-256 |
2632496875f390bcf7128125f2e4d429f46fb791396bdf5d83d2ea920858ff47
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
1e6b445a01649b35abe83c9ef6743dabd4600605c15d84433010b6d1763060ec - Sigstore transparency entry: 2256540976
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b660b47f8cd28732531333c4a297e38fd4fdffbc06b4d95efdfdf4889ced7d49
|
|
| MD5 |
b4f0cb14d9c8179e0960b733a89ca4cd
|
|
| BLAKE2b-256 |
e4c5edbf266b3b3a213caed98ee73f2b18c83139d73bf7619a882b41cd2bfa22
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-win_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-win_arm64.whl -
Subject digest:
b660b47f8cd28732531333c4a297e38fd4fdffbc06b4d95efdfdf4889ced7d49 - Sigstore transparency entry: 2256541164
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a499f64357e311810ada80a80fa72602aeed60bc7f3bdfb4dd97b539c44f4e44
|
|
| MD5 |
bd67735a08a0e7084df3c80461985385
|
|
| BLAKE2b-256 |
b7e1ce30d0c218a2f01b542fe6cec5641a4de0dff3ecacaa30c6b4948cbc763d
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-win_amd64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-win_amd64.whl -
Subject digest:
a499f64357e311810ada80a80fa72602aeed60bc7f3bdfb4dd97b539c44f4e44 - Sigstore transparency entry: 2256541048
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f4b7e62c88df4fb978f46894e7035843c1cf65e15dea3c08f2deade3db3d2dd
|
|
| MD5 |
d761dc4c9cbf2a8c9a22726ad808aa5b
|
|
| BLAKE2b-256 |
3834ec23a3b1e8a09fa52c0fcae7974630b7f54ccb5c86d87b5102422814d688
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
0f4b7e62c88df4fb978f46894e7035843c1cf65e15dea3c08f2deade3db3d2dd - Sigstore transparency entry: 2256540932
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cb6b85a4d00f618cfd2b1b4aa98fab90ebb6df0dfdc5eef644a71336e3424f2
|
|
| MD5 |
95045ae3bb7eac80ac8661789fafd9ff
|
|
| BLAKE2b-256 |
dfe313c92ad43d2d8a207080989a903ca98ecefac9cdab989556d83c263ae6e4
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
0cb6b85a4d00f618cfd2b1b4aa98fab90ebb6df0dfdc5eef644a71336e3424f2 - Sigstore transparency entry: 2256540929
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11bc1b0e3ab9d693d39aab6e10b3557a31c48db51ca7e81cf8838eacfa14ae7e
|
|
| MD5 |
d4549da8022e8e3623c65b353bf9e5d8
|
|
| BLAKE2b-256 |
f1587d95ace2506ac3eb66813a897fefeb1ac399712aefbd5dcbe7a934f8afc4
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl -
Subject digest:
11bc1b0e3ab9d693d39aab6e10b3557a31c48db51ca7e81cf8838eacfa14ae7e - Sigstore transparency entry: 2256541053
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f66ca5515e2abe2be8b0c9986ef47706189018e4e63578b2285db4e494176138
|
|
| MD5 |
209fafd14a323f34617f99659e5e0503
|
|
| BLAKE2b-256 |
3155fc0f706615b85171d44091f1e9abba76a4cb6ec9483764f3f95bb2d15b9f
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl -
Subject digest:
f66ca5515e2abe2be8b0c9986ef47706189018e4e63578b2285db4e494176138 - Sigstore transparency entry: 2256541126
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c667977abfb1ecc7e9fb4d2d605ba25403dceb51652a6d3dbf68a886cbb274d
|
|
| MD5 |
68f63d48737df21d8f18deb209fb1d12
|
|
| BLAKE2b-256 |
aed0530bd3b1b23ebdcc02646776f5ce5d791af5ef9ef6b3ae3c739d923bbd0c
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-macosx_11_0_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-macosx_11_0_x86_64.whl -
Subject digest:
2c667977abfb1ecc7e9fb4d2d605ba25403dceb51652a6d3dbf68a886cbb274d - Sigstore transparency entry: 2256540898
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d52a5b5f066ae7abb686a9c0125ae99818577199388f29bff263c2059029c3
|
|
| MD5 |
e6a4e26ab42f17c731eaf8def4931fc3
|
|
| BLAKE2b-256 |
a3d342a74bbbd5caaeceb0169bf7d282de20bb5017fc77c9f02e99e4e244e13b
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
33d52a5b5f066ae7abb686a9c0125ae99818577199388f29bff263c2059029c3 - Sigstore transparency entry: 2256541016
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13da5e49207a82abf7a07de18d41f88465839930e7268600bdb615272ba6221f
|
|
| MD5 |
00dae428ee7df2727e7fce022e713782
|
|
| BLAKE2b-256 |
cbb0ea1bca3c80f428c87e5abfcc2631e9bb6437f19f5b21d3b43aa8358342c9
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-win_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-win_arm64.whl -
Subject digest:
13da5e49207a82abf7a07de18d41f88465839930e7268600bdb615272ba6221f - Sigstore transparency entry: 2256540954
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c65c32dff59ee4ef49a715f13a823505e3dbc8cc76b8c4d597073dfb306d4ccd
|
|
| MD5 |
efcffd1c464d9908994406b1856fab12
|
|
| BLAKE2b-256 |
d925ad1e58201cffcb9cc461b4245246140dbd7780479938ea0f46f22930fe6a
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
c65c32dff59ee4ef49a715f13a823505e3dbc8cc76b8c4d597073dfb306d4ccd - Sigstore transparency entry: 2256541044
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78fd0db570bdb1807506f73079d344d9a537b4818c2042ae12e38e2c17ab50b3
|
|
| MD5 |
6c2362b66c54f3066c127ea8d635d3a5
|
|
| BLAKE2b-256 |
979b000a21ceacf9adb5a4b3efd5ce0e26fec83a1ca3ded383dc2649720f1918
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
78fd0db570bdb1807506f73079d344d9a537b4818c2042ae12e38e2c17ab50b3 - Sigstore transparency entry: 2256541005
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2abc6a9b7b79fc3f0bba6a221f381d4db566374aa61a6792a4f17b78015b4ff
|
|
| MD5 |
c738c3d47fe3b2f3ba9dcac85d89779b
|
|
| BLAKE2b-256 |
5078c2948b1850d69e0c91ee2954c3643c57ca5b970224ccc11ed79f642663fe
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
f2abc6a9b7b79fc3f0bba6a221f381d4db566374aa61a6792a4f17b78015b4ff - Sigstore transparency entry: 2256541105
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
784b67e781babfb9487827af9af2e1fe4b71fa3c81808927074eb2d48bf8e02d
|
|
| MD5 |
356e0dca79c8a349ae83d3319e4709f2
|
|
| BLAKE2b-256 |
07946813fc7ec29fd8eee61ed65cb5c235b3d340c839733d11a940b0c439c39d
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
784b67e781babfb9487827af9af2e1fe4b71fa3c81808927074eb2d48bf8e02d - Sigstore transparency entry: 2256541110
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eff116345968f1e80326f3ad940b6c01db0943da52b37eead43623b8a0d34de7
|
|
| MD5 |
ea84f6f1cfcca3987300cb9d19bc9771
|
|
| BLAKE2b-256 |
3e59922d65e3585b126080271d2d92112c39f1e4ca1854af944aa11fc64b13ac
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl -
Subject digest:
eff116345968f1e80326f3ad940b6c01db0943da52b37eead43623b8a0d34de7 - Sigstore transparency entry: 2256540936
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb9538b040e38e94ada5c477536cef145ba8ee9916f3ec0c75078190ea3f5bfe
|
|
| MD5 |
6b77fc0c16ed18bd66ffca89256a987a
|
|
| BLAKE2b-256 |
78470f7662ff4b6e0f6a43e517c3070050fd4d1edb56c4f67b9dafbbac576205
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-macosx_11_0_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-macosx_11_0_x86_64.whl -
Subject digest:
bb9538b040e38e94ada5c477536cef145ba8ee9916f3ec0c75078190ea3f5bfe - Sigstore transparency entry: 2256540943
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2743430ccc2515330aa6ffac4f218ca553d66f7c4e79c881c22ee571946ba36d
|
|
| MD5 |
6987ebfd83fbe8a93ae7a04c3fa0cb19
|
|
| BLAKE2b-256 |
8231f00518a2b645a0ef177ae58c400609fb92a3831cafc59cfe88e9f715a9e3
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
2743430ccc2515330aa6ffac4f218ca553d66f7c4e79c881c22ee571946ba36d - Sigstore transparency entry: 2256541114
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30c0448533eaf6fd709241ac6c6257b9d505bf5fd4aa160f8fda7b85d61f76d8
|
|
| MD5 |
d12fc529706b7a4b8fe2a18b8df29ef6
|
|
| BLAKE2b-256 |
f07f1a2912767ff7c0191ddd8d2e6fd47f128bcfa2526e3452d6f2a781537135
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-win_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-win_arm64.whl -
Subject digest:
30c0448533eaf6fd709241ac6c6257b9d505bf5fd4aa160f8fda7b85d61f76d8 - Sigstore transparency entry: 2256541144
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2f0a08c1f76a191a9887cb7387edaba39cc9b8cdae638c1109463bed363986e
|
|
| MD5 |
1cf2c01abe7d21ebb81c8ffb8d9f3a40
|
|
| BLAKE2b-256 |
cb72be02b24e425fb6dc7ab5a88384a0b95ec143df5f6d03b6f297477e90ef25
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
f2f0a08c1f76a191a9887cb7387edaba39cc9b8cdae638c1109463bed363986e - Sigstore transparency entry: 2256541027
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ba3f40edd1d1803f4e837fac3df5b21e30ce33be18dc25578ac13552af44136
|
|
| MD5 |
0e907e3c5616bff7411f16f675616ac7
|
|
| BLAKE2b-256 |
206ceb54d36bce021fef2f436d158ecfe5223340604ad850fb23442c355e2d31
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
5ba3f40edd1d1803f4e837fac3df5b21e30ce33be18dc25578ac13552af44136 - Sigstore transparency entry: 2256541181
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a100ff22ccb2bfddee9fd7567e43e52f9515e841762f522e0b1f7a0089f9722
|
|
| MD5 |
e6496dad49cc6479409af4d2fd4af4c2
|
|
| BLAKE2b-256 |
2ca5f4b273423e0d1ab4ebd581920659cabed8c849343c3538b1a35b94acf536
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
5a100ff22ccb2bfddee9fd7567e43e52f9515e841762f522e0b1f7a0089f9722 - Sigstore transparency entry: 2256541175
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1b776085f9e248612b34efaae262e01be3294bb818e10f458b77680030f8aa2
|
|
| MD5 |
bd94f44487415443a405534df4eb6f3a
|
|
| BLAKE2b-256 |
20f0ab36fa39294ed54017acab594b6d9770902460f4ea8eda4e922b1a4aa64d
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
c1b776085f9e248612b34efaae262e01be3294bb818e10f458b77680030f8aa2 - Sigstore transparency entry: 2256541078
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18d3e43ebdf02a98c9f506dc713de35e836bcd37fce9f621e109eb3ce2e1d5d3
|
|
| MD5 |
3f1da7a5f8e2fd98d474396c2b8de055
|
|
| BLAKE2b-256 |
6526b2583753818b29e823a656c8676e5fe65ad9487dc014e57796d92a0e4053
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl -
Subject digest:
18d3e43ebdf02a98c9f506dc713de35e836bcd37fce9f621e109eb3ce2e1d5d3 - Sigstore transparency entry: 2256541186
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.12, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
586d960801fdad402795a4888c329605346e15908524cc5cb7b577665b49dea7
|
|
| MD5 |
d4a83a59bdd344a9c59418f3a22b385d
|
|
| BLAKE2b-256 |
1f82995d35bf6500d8e6dec77e3500bbad572818216d5e4cf40584fa4e500ea7
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-macosx_11_0_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-macosx_11_0_x86_64.whl -
Subject digest:
586d960801fdad402795a4888c329605346e15908524cc5cb7b577665b49dea7 - Sigstore transparency entry: 2256540969
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6503e3a97d5b7ec94561ffc5df4d53d52b61100726877241ad5f5d3cedefac03
|
|
| MD5 |
12954d78a79697ab9bbb00111f3b1b14
|
|
| BLAKE2b-256 |
f0f96668bc3717f56885d23bde3c4c7e8dc577d293ea918ca06a1d792e201c02
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
6503e3a97d5b7ec94561ffc5df4d53d52b61100726877241ad5f5d3cedefac03 - Sigstore transparency entry: 2256540988
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06f9f6484d4c5d8ebd401abbf5d9696a5b615d93a62b9eeee01d66c9ad5b08b5
|
|
| MD5 |
d877353340007781f323228f9cda0b78
|
|
| BLAKE2b-256 |
2b634aa0181296ac3e99c7cd75e23ba459371f6e36cdc4ea00582e35d3820896
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-win_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-win_arm64.whl -
Subject digest:
06f9f6484d4c5d8ebd401abbf5d9696a5b615d93a62b9eeee01d66c9ad5b08b5 - Sigstore transparency entry: 2256541201
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6986724b89d4b6122272aa8562f48b8847a4452e9a9317289ce0f918b8df4e1
|
|
| MD5 |
63be251e4f8ff83868326f4c536a7fcb
|
|
| BLAKE2b-256 |
248235a56133c0ea18407e595082677ed72378385cc40ec8a8b5d20d384a07f3
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
b6986724b89d4b6122272aa8562f48b8847a4452e9a9317289ce0f918b8df4e1 - Sigstore transparency entry: 2256540949
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3778666e43dca1d59ae379f2159988ceae3d9f5ae26e2183a89407cede3f2579
|
|
| MD5 |
30e4266bec48ea87d9648470bf8005ae
|
|
| BLAKE2b-256 |
5a882a41b9ff9d6f73c63613d511888aaeff7dc57ca589c7af0a93297d393daf
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
3778666e43dca1d59ae379f2159988ceae3d9f5ae26e2183a89407cede3f2579 - Sigstore transparency entry: 2256541021
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd199b28e4e45f80fa73e67d1d43396afdd3b85a53be4c48c804b49de2ea744
|
|
| MD5 |
81069077fedaa165ac301af9fa226844
|
|
| BLAKE2b-256 |
1f1e19478221ff812053228f6db7f0dc6ef1ed52d2a74bbf7ef7ea95af8c0aea
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
8fd199b28e4e45f80fa73e67d1d43396afdd3b85a53be4c48c804b49de2ea744 - Sigstore transparency entry: 2256541157
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc24d65d607dcf305242dc81dee987d107255b4a90ac82db070feda8053000f1
|
|
| MD5 |
d5fab1da03a096541a7774621dbecb1d
|
|
| BLAKE2b-256 |
7121d4252631588fd2c66b8285ba691b43c2220214be31524346451c1225e8bb
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
dc24d65d607dcf305242dc81dee987d107255b4a90ac82db070feda8053000f1 - Sigstore transparency entry: 2256540924
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b01350dee82387684ec33732069765b8c9d8a0a23c23e88bf198a35db8813748
|
|
| MD5 |
c86b5469f4092a515283903fd678fdfd
|
|
| BLAKE2b-256 |
dd8f56b75cb976c64589a7879f0210162995cdf80dc7a8e5fce84d111981e813
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl -
Subject digest:
b01350dee82387684ec33732069765b8c9d8a0a23c23e88bf198a35db8813748 - Sigstore transparency entry: 2256541139
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.11, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30210652c95f9d700461eb99918d3e50a935e89cc6149c74c763e5f2ad8fac5d
|
|
| MD5 |
7a4895aec49d6077baa075261e61d2e7
|
|
| BLAKE2b-256 |
4571d9fc00df0ef354d98e04dc5a1fc8168a9f2a350904def2b8c4663f39be1c
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-macosx_11_0_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-macosx_11_0_x86_64.whl -
Subject digest:
30210652c95f9d700461eb99918d3e50a935e89cc6149c74c763e5f2ad8fac5d - Sigstore transparency entry: 2256540905
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a2dc45cf05b96cacf10e214f5340e316e1d68bbb15ef66fcc5169545089f769
|
|
| MD5 |
ab05885faa86c05c0fac5897bc258a9f
|
|
| BLAKE2b-256 |
3752e2954d25b5dd048d2aa9732850992929f62b026c56924a39d586a8c0d22f
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
0a2dc45cf05b96cacf10e214f5340e316e1d68bbb15ef66fcc5169545089f769 - Sigstore transparency entry: 2256541199
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 3.4 MB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00c51cbc6b55ad3c74f524245687f69090170c49331625a803a88acb91953cf7
|
|
| MD5 |
de54bfe891ca3828bb1114572558b433
|
|
| BLAKE2b-256 |
8f6f52ae11f4342f8f29e5050ea4edff0b167270f526b2ddc4c151fe12de66e8
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-win_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-win_arm64.whl -
Subject digest:
00c51cbc6b55ad3c74f524245687f69090170c49331625a803a88acb91953cf7 - Sigstore transparency entry: 2256540962
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eacd306e7968bbb72bf0597589a2e4eacb3d684719c49f90a04d121e0fe16c9
|
|
| MD5 |
c92b1d0beec5d1c23e1c5cf509dbef7a
|
|
| BLAKE2b-256 |
50f842ce2ccbfb07028d0b26a2e195ddd71fd6b54a9d58b8995ae563b450dc94
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
6eacd306e7968bbb72bf0597589a2e4eacb3d684719c49f90a04d121e0fe16c9 - Sigstore transparency entry: 2256541190
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.9 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80b8d2d9326e5e0c766142dd22dd8e489fe860cb8a9c06c4a11d16acd7fe429a
|
|
| MD5 |
1ad3e651f2b0cc4ab300fe1c771e93fe
|
|
| BLAKE2b-256 |
736c6ff45c8088dfee2d442b91d61e28e817d4bb099eca882add76aadbc54a7f
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
80b8d2d9326e5e0c766142dd22dd8e489fe860cb8a9c06c4a11d16acd7fe429a - Sigstore transparency entry: 2256540987
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0b14b5994615c4cd05484f8a8e4a19752bc3c775fd26737e068400bb3ce668c
|
|
| MD5 |
cfde926bf2bcc9620c7a109d7b7d081d
|
|
| BLAKE2b-256 |
c7c980ebb294554dc0b8609c4c2a5e4fb8ac2fcd2bab27fef758dc17b896cac0
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
e0b14b5994615c4cd05484f8a8e4a19752bc3c775fd26737e068400bb3ce668c - Sigstore transparency entry: 2256541133
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4842c099606b01f73b501472a6620d707d9f34186225b1e5831bf29f6ba65a56
|
|
| MD5 |
8511a832980b8cc349476336b1ad8aa6
|
|
| BLAKE2b-256 |
79c09177b353862a20b60e7efaeeadd085f86272ec4aa369162fa723f8c3fcc5
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
4842c099606b01f73b501472a6620d707d9f34186225b1e5831bf29f6ba65a56 - Sigstore transparency entry: 2256541167
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53097c23931ab314fe41a830cc3c451f17d5029acb04b0c0534fcc5aa5613a4d
|
|
| MD5 |
807146984aa0ac94b10f7e69c6efeae9
|
|
| BLAKE2b-256 |
ea8f200f9795f87cb7a7b3cbb9afa8a1a1d7b930e36e802e1c3458392116ae1f
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl -
Subject digest:
53097c23931ab314fe41a830cc3c451f17d5029acb04b0c0534fcc5aa5613a4d - Sigstore transparency entry: 2256541097
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-macosx_11_0_x86_64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-macosx_11_0_x86_64.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10, macOS 11.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1a4dd907c443443de6b1307c0148d5da2ed363b66def2fff53b4ef042609688
|
|
| MD5 |
17d5404294416d33d626dfe8cc3a571a
|
|
| BLAKE2b-256 |
6d0f00221b9b68923f3f04c913bd50f307841b830b0b3a17bb1eab18d1677f1b
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-macosx_11_0_x86_64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-macosx_11_0_x86_64.whl -
Subject digest:
d1a4dd907c443443de6b1307c0148d5da2ed363b66def2fff53b4ef042609688 - Sigstore transparency entry: 2256541128
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pytakumi-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pytakumi-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.3 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22cccc8309edf6050f78e54bfd36a7914ec4bb75c6dbd56dea574a036f21dbdd
|
|
| MD5 |
9de224b92faaf1ee621e51c03ab4a409
|
|
| BLAKE2b-256 |
8d0a3dd482698d99136f711fc23d78119ccebb1509a9fd64c9b2d0c1c02e07bf
|
Provenance
The following attestation bundles were made for pytakumi-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on KimigaiiWuyi/pytakumi
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pytakumi-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
22cccc8309edf6050f78e54bfd36a7914ec4bb75c6dbd56dea574a036f21dbdd - Sigstore transparency entry: 2256541009
- Sigstore integration time:
-
Permalink:
KimigaiiWuyi/pytakumi@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Branch / Tag:
refs/tags/v0.1.5 - Owner: https://github.com/KimigaiiWuyi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@8cdb5356ca07604ff538e126dba7aefd287a2129 -
Trigger Event:
push
-
Statement type: