Skip to main content

eiko_skelfm

PyPI version

Fast-marching skeleton extraction for 2D and 3D binary images.
Port of Kroon's MATLAB/MEX FastMarching toolbox to standalone C + Python/NumPy.

Skeleton extraction result

Installation

pip install -e .

# with dev dependencies (pytest, matplotlib)
pip install -e ".[dev]"

Quick Example — 2D skeleton

import numpy as np
from scipy.ndimage import gaussian_filter
import matplotlib.pyplot as plt
from eiko_skelfm.skeleton import skeleton

# 1. Create a thin skeleton: center dot + 4 radiating lines
shape = (100, 100)
skel = np.zeros(shape, dtype=bool)
cy, cx = 50, 50
skel[cy, cx] = True
for t in range(1, 40):
    skel[cy + int(4 * (1 - np.cos(t / 4.0))), cx + t] = True  # line → +x (cosine)
    skel[cy + t, cx - t // 5] = True   # line → +y
    skel[cy - t, cx + t // 5] = True   # line → −y
for t in range(1, 30):
    skel[cy - t // 4, cx - t] = True                 # line → −x (seg 1)
    skel[cy - 7 - t, cx - 29 - t // 3] = True        # line → −x (seg 2)
for t in range(1, 20):
    skel[cy + int(4 * (1 - np.cos(5.0))) + t, cx + 20 + t // 2] = True # branch 1
    skel[cy - 7 + t // 3, cx - 29 - t] = True                          # branch 2
    skel[cy + 20 + t // 3, cx - 4 + t] = True                          # branch 3
    skel[cy - 20 - t // 3, cx + 4 - t] = True                          # branch 4

# 2. Convolve with a Gaussian to create a tubular binary mask
convolved = gaussian_filter(skel.astype(float), sigma=3.0)
binary_mask = convolved > convolved.max() * 0.15

# 3. Extract the skeleton
segments = skeleton(binary_mask, verbose=True)

# 4. Plot the result
fig, axes = plt.subplots(1, 4, figsize=(18, 4.5))
axes[0].imshow(skel, cmap="gray", origin="lower")
axes[0].set_title("Ground-truth skeleton")

axes[1].imshow(convolved, cmap="inferno", origin="lower")
axes[1].set_title("After Gaussian blur (σ=3)")

axes[2].imshow(binary_mask, cmap="gray", origin="lower")
axes[2].set_title("Binary mask")

axes[3].imshow(binary_mask, cmap="gray", origin="lower", alpha=0.35)
for seg in segments:
    axes[3].plot(seg[:, 1], seg[:, 0], linewidth=2)
axes[3].set_title("Extracted skeleton")

plt.tight_layout()
plt.savefig("skeleton_2d.png", dpi=150)
plt.show()

Four-panel overview

See docs/example_skeleton_2d.py for the full runnable script.

Build Standalone C Library

Linux (GCC)

gcc -O2 -std=c99 -c src/common.c src/msfm2d.c src/msfm3d.c -lm
ar rcs libeiko_skelfm.a common.o msfm2d.o msfm3d.o

macOS (Clang)

clang -O2 -std=c99 -c src/common.c src/msfm2d.c src/msfm3d.c
ar rcs libeiko_skelfm.a common.o msfm2d.o msfm3d.o

Windows (MSVC)

cl /O2 /c src\common.c src\msfm2d.c src\msfm3d.c
lib /OUT:fastmarching.lib common.obj msfm2d.obj msfm3d.obj

Windows (MinGW)

gcc -O2 -std=c99 -c src/common.c src/msfm2d.c src/msfm3d.c 
ar rcs libeiko_skelfm.a common.o msfm2d.o msfm3d.o

CMake

cmake -B build -S .
cmake --build build

Release files for eiko-skelfm 0.2.0

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

Source distribution (sdist)

Source distribution for eiko-skelfm 0.2.0
File Size Uploaded
eiko_skelfm-0.2.0.tar.gz 26.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for eiko-skelfm 0.2.0
File
eiko_skelfm-0.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
eiko_skelfm-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
eiko_skelfm-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
eiko_skelfm-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
eiko_skelfm-0.2.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
eiko_skelfm-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
eiko_skelfm-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
eiko_skelfm-0.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
eiko_skelfm-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
eiko_skelfm-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
eiko_skelfm-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
eiko_skelfm-0.2.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
eiko_skelfm-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
eiko_skelfm-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
eiko_skelfm-0.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
eiko_skelfm-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
eiko_skelfm-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
eiko_skelfm-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
eiko_skelfm-0.2.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
eiko_skelfm-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
eiko_skelfm-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
eiko_skelfm-0.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
eiko_skelfm-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
eiko_skelfm-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
eiko_skelfm-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
eiko_skelfm-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
eiko_skelfm-0.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
eiko_skelfm-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
eiko_skelfm-0.2.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
eiko_skelfm-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
eiko_skelfm-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
eiko_skelfm-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
eiko_skelfm-0.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
eiko_skelfm-0.2.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
eiko_skelfm-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 2.6 MB

Release files / eiko_skelfm-0.2.0.tar.gz

Download URL eiko_skelfm-0.2.0.tar.gz
Size 26.6 kB
Tags Source
SHA-256 checksum
How to use checksums
1644e7cfba9b3bfdc3b96e213704e8625d70bb0bfa321d296efaa92c7f847274
BLAKE2b-256 checksum
How to use checksums
4ae280c8b68a8379f783aa68ceae4ecf3a1c711df99152f70e561df41724a28f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp313-cp313-win_amd64.whl

Download URL eiko_skelfm-0.2.0-cp313-cp313-win_amd64.whl
Size 31.3 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
2652e61957a5c84c156ea7d0b30525f1af754b3b40c5ec53cf8fce60359d8486
BLAKE2b-256 checksum
How to use checksums
6a4cb27989d955187a8c70d05f81760dde30486b8f2c160f57962e5788883ea2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 105.3 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
8069c3c24942935ffe60ee8039d3c02aaefe935f5a2ae6945a01160738cfcfeb
BLAKE2b-256 checksum
How to use checksums
1aa280053a4e302539c9d4d34ec7d6ebfb602dc2fa182fc4335b42c4ef5522ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 100.1 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a6d2defa67ed8c242b849622975e977f0d59e15175fa4918c5df8360d1248a98
BLAKE2b-256 checksum
How to use checksums
487a86b63c609650cd9c18611421aad4ec6ddf4b7de8e992f32ba2994a387cac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 104.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
6e0169d4af38efa03ffafc08f24ab352f66955ab5dc1126910fbf6054722f7db
BLAKE2b-256 checksum
How to use checksums
52cdbc40d9bfbbcd1ed79651de02d9ba518f5ad327051d4ad1e66b8c7bf861e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Size 108.7 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
37aa8f587e0c69cb5b9f439ec3a2b10818ec7aa462aefcde06d190c851273fc4
BLAKE2b-256 checksum
How to use checksums
5e934cd2c2c24c82539252f518e10dead0a414834e9e0f118576fbe2cf6d0f6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL eiko_skelfm-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 27.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
703124eb4d331e21915847db613d52c14bdc8027c5ceb845e6a42888f5a16f1b
BLAKE2b-256 checksum
How to use checksums
512317ed972a9610e81e13db4de84789950ac35acc066e05f16e875ccd11cc33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 30.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c586d6d3ed57f0ad69ebd6990b26b222b71f32aef0fafb86bdc284823d8d63e9
BLAKE2b-256 checksum
How to use checksums
05139e3ac671085561f585111b0eae772a95bd0b4132dcc4f99fc9a16a4b69e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp312-cp312-win_amd64.whl

Download URL eiko_skelfm-0.2.0-cp312-cp312-win_amd64.whl
Size 31.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
b40bbf512c3ac1711713daf61bbdcf84b583698f86cb8807ea7d2fc1eb8dc00a
BLAKE2b-256 checksum
How to use checksums
f22e0712860239b924bcdb9c7b1118f9eb4d91bd3f6543840b9da70e7d01216a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 105.3 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
232c6d4a9c269d1ec1f3450859434372f5b6194db9a3708c0ed870023111a4b6
BLAKE2b-256 checksum
How to use checksums
cccffd641a3b6b17f1112748513a93b461dd9c1aac6766618605e3696c202519
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 100.1 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9a895be950e71ecc391331f7466703065642457ca0c81a4bd3056259b1048913
BLAKE2b-256 checksum
How to use checksums
efaca1f3bbd81313dba476837627aa17b77fe05b58c38fd9d9d7f7b6c73876f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 104.5 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0c5ce11fd761246a38ae5440400c52688a4c66b39cc4d257edef650e556867c6
BLAKE2b-256 checksum
How to use checksums
002d32e4a006651f62932619bc9edfaf1cb07b2c957d06b3b258223be5e4721a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Size 108.8 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0027037aaee77ac14b649b0b0f250308bac57272e60e6209b819be9a893b2cc7
BLAKE2b-256 checksum
How to use checksums
8906c30ddfbac7a9ae9418a711d99edd4c136d768bc05beeec738514fbda5b7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL eiko_skelfm-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 27.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eff3eb65cfd9cd147a3009091691db79341039e9fe835f5e1827440436ebe3d6
BLAKE2b-256 checksum
How to use checksums
63b0ead48b012f7ff52da878173e396e11a0dccb6eaa1929325da814ee7f1c40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 30.6 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
b62c73b173287fea2c19c7dabb1ce6b32cf43b6e76256cb4749fa1c10a674df3
BLAKE2b-256 checksum
How to use checksums
21b584f8ed4857edf0bc011b934be3e61ca983ea5688869268fed65ef6290614
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp311-cp311-win_amd64.whl

Download URL eiko_skelfm-0.2.0-cp311-cp311-win_amd64.whl
Size 31.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
0b09dbb4c393b6ce23f54b8e96a33c4e273857aee07c01456fb6561a9f6cd5ec
BLAKE2b-256 checksum
How to use checksums
f5da8caccf98be9dc06b87ea32250fa8d1f3a9d3cf2e6a04d0ae2d79a9d02203
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 104.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2de2b3d66bd3cf7ed1a1772051f54580dd0cc88580f96e1c285be7bd1fdc89b9
BLAKE2b-256 checksum
How to use checksums
ff0f668f6b063e541dfc56274c2478ed6ecc2b82eabd2866a548a0cf2a9e0355
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 99.8 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5de614acef222352eb2bfd9c14b5d22e0d9a6707571cf1738d8a84ce248d09ec
BLAKE2b-256 checksum
How to use checksums
1d59658ee621cddbbe2fa5813181d42bf6c7f4ecdffec874a6d7c6a923a33680
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 104.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d74683f4e3a5b7ae3dc51025a6ffe07a7977d6a60818ddf82cd63d1db6923c28
BLAKE2b-256 checksum
How to use checksums
f72097f8b4d763511a5d1eabcdc63a3c0b39662644e9828028e82ce31b75329f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Size 108.3 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6217630ffe59e007045f94310ba20b30ddcf13a248ca3bab1a1634ccf8702f2d
BLAKE2b-256 checksum
How to use checksums
0dc18dfe17e8ab1b7e9371d8be6cc36e8f52bb7d6664de8fc88131e045d6601c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL eiko_skelfm-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 27.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
52d838b8b5f526a83147273a98ebdc1929af26db6b93a43a45ca4c37f6df442e
BLAKE2b-256 checksum
How to use checksums
7c11701c0b19a6455e4ed15de5e2b1d5283363c3044ea08097674b565a564acc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 30.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
68f29d7bfb9159a036e8acc2199c3e826246474bba831a10ed84ae5dd4a93488
BLAKE2b-256 checksum
How to use checksums
084a16ebca48ee1d46ed166817372ae93e5c13f7eae7224be8623ab298c6f3b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp310-cp310-win_amd64.whl

Download URL eiko_skelfm-0.2.0-cp310-cp310-win_amd64.whl
Size 31.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
d01a737721ba7afc0e9dd38a7465e765085f08f174eb3863f6a99733a3e71a56
BLAKE2b-256 checksum
How to use checksums
c90701f3944fb7b91cd0b6e5529331cf47cbea92886d6b88a86b1556633cf359
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 104.8 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5b306796139b2c4649da5fe8c309cdfd5ad0e904d3917c22b3022bc68ff75753
BLAKE2b-256 checksum
How to use checksums
435ed65d0177b85b509e9f7c27b347047cf13802407306dcb6c69b3d629dec70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 99.8 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2754816e0ba6958fd71e8f297089495a8946a2f1303ab088a3d59dd0921d0f14
BLAKE2b-256 checksum
How to use checksums
ff27bdfb8e0ef2499b44b22fc543016909e91c04849c4db5a57cf94d3cd3eac6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 104.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
dea5f14246199f5d8e6169a64511cae148c8589da7be3258c58ab9371bffafbc
BLAKE2b-256 checksum
How to use checksums
f2f04c5307f5ea546a3785e4a78ab99cd96b8882f33bfd767ce4d4b7e5867470
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Size 108.2 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c233d9c2f21d461bce0c0f35694d7461686b4c7ea2cda3d07ccb860f2d141907
BLAKE2b-256 checksum
How to use checksums
e56d90c10e6534d0a97c615aa6ab3bb34c25420b6b1560d81a5d49ecd476bf7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL eiko_skelfm-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 27.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
08a49f247239e552289dfc9da8987cbbd69f3826989eec72f378d605db5870df
BLAKE2b-256 checksum
How to use checksums
c349def035e8c13007ba2b227b4d93371a6859c4387d7d96a306ee09022a61ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 30.2 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d003e090e82305aa21e4fe644a9bf3d158868808b3e692b46e2342c092585ff6
BLAKE2b-256 checksum
How to use checksums
89cba12d7581fab99f90de839ec541b9408f10bfe9bd562c4267eccfa85f1cd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp39-cp39-win_amd64.whl

Download URL eiko_skelfm-0.2.0-cp39-cp39-win_amd64.whl
Size 31.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
52bdd0052c4968bb56f8430e77ed366ebc191591b3eb8fca900d0fa07f43f866
BLAKE2b-256 checksum
How to use checksums
4a313560d2733a8f5c5ee985f2e6d99d6a6f825d085eb44b6bcd9d0935a8c088
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 104.6 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ff5ba53d62c196c445e00c676070482db4ad838e83691402ec659369a98afc9d
BLAKE2b-256 checksum
How to use checksums
42395a1fd5ba858cc5046efd43729b60d649db4ceb1500de3ef14c51a93fb6aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 99.5 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
226b20f24bd64f70b337c3073bac363c6a01152dc38809d9f6e6a6a3d2f6411b
BLAKE2b-256 checksum
How to use checksums
f94cad7140f582e89d0985f0248da09f601a44b7b643867f5f2129e305aaab57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL eiko_skelfm-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 103.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e5060509dcef7b594c4d65043d5e60d97a0443b2b209a683bfc86ecf4409212b
BLAKE2b-256 checksum
How to use checksums
01754ae31124d89ac288acc11ebb9ada5f5cf6a492006b920feaa3ec4ad00233
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl
Size 108.0 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
75adcccef5ec7201d748fa60c1603df867eaed0ee2fdc6f947d972d6f406ccd7
BLAKE2b-256 checksum
How to use checksums
d80233a05af75ebacb57d3ed466c2187b5f0b4551c3683ff1270ac8674df4a2d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL eiko_skelfm-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Size 27.6 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
55891fd1bc312f668235443ad0c8a1c18565635ed08ca56dd003eb537a1d6c4e
BLAKE2b-256 checksum
How to use checksums
bd55c5d27941a93ba4c10825dfaacf0dc3c3932118db43b36c4261c69b008ad3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release files / eiko_skelfm-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL eiko_skelfm-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 30.2 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ee53c392b12bbab22a53e0973ede2b780b977e18f71798f2a45ce1ff15693208
BLAKE2b-256 checksum
How to use checksums
de2aaae7cd8e89b8ea974411c727d75acc480868e16a1cd9b29149f6e8c82e7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

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

PyPI Publish Attestation

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

Signed by GitHub Actions, verified by PyPI on Aug 14, 2026.

Transparency log

Release history Release notifications | RSS feed

0.2.1

36 release files

This release

0.2.0 This release

36 release files

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