Skip to main content

r2py_kernsmooth

A Python port of the R package KernSmooth (v. 2.23-26), which implements the kernel-smoothing methods described in Wand, M.P. and Jones, M.C. (1995), Kernel Smoothing, Chapman and Hall.

The package binds the original KernSmooth Fortran routines directly via f2py, and reimplements the R-level driver logic (argument handling, FFT-based convolution, plug-in bandwidth selection) in Python on top of NumPy and SciPy, so results match the R package to numerical precision.

Installation

pip install r2py_kernsmooth

Building from source requires a Fortran compiler and a BLAS implementation (e.g. OpenBLAS); see meson.build.

Functions

Function Description
bkde Binned kernel density estimate
bkde2D 2D binned kernel density estimate
bkfe Binned kernel functional estimate
dpih Direct plug-in histogram bin width selection
dpik Direct plug-in bandwidth selection for kernel density estimation
dpill Direct plug-in bandwidth selection for local linear regression
locpoly Local polynomial regression / density derivative estimation
linbin / linbin2D Linear binning of (1D / 2D) data onto a grid
rlbin Linear binning of regression data
blkest, cpblock, sdiag, sstdiag Internal estimation helpers used by dpill

Example

import numpy as np
from r2py_kernsmooth import bkde, locpoly

x = np.random.normal(size=1000)
density = bkde(x)  # {"x": grid points, "y": density estimate}

y = x + np.random.normal(scale=0.5, size=1000)
fit = locpoly(x, y, bandwidth=0.3)  # {"x": grid points, "y": fitted curve}

License

r2py_kernsmooth is distributed under the same "Unlimited" license as upstream KernSmooth: it may be used, copied, modified, and redistributed for any purpose without restriction. See LICENSE for the full text.

Attribution

r2py_kernsmooth is a derivative of the R package KernSmooth, originally authored by Matt Wand, with LINPACK Fortran routines contributed by Cleve Moler and the R-language port maintained by Brian Ripley. The Python port is authored by Yufei Cai (ycai9@nd.edu) and Jun Li (jun.li@nd.edu). See NOTICE for full attribution details.

Release files for r2py-kernsmooth 0.1.0

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

Source distribution (sdist)

Source distribution for r2py-kernsmooth 0.1.0
File Size Uploaded
r2py_kernsmooth-0.1.0.tar.gz 101.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for r2py-kernsmooth 0.1.0
File
r2py_kernsmooth-0.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
r2py_kernsmooth-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
r2py_kernsmooth-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
r2py_kernsmooth-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_kernsmooth-0.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_kernsmooth-0.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
r2py_kernsmooth-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
r2py_kernsmooth-0.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
r2py_kernsmooth-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
r2py_kernsmooth-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
r2py_kernsmooth-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_kernsmooth-0.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_kernsmooth-0.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
r2py_kernsmooth-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
r2py_kernsmooth-0.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
r2py_kernsmooth-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
r2py_kernsmooth-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
r2py_kernsmooth-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
r2py_kernsmooth-0.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
r2py_kernsmooth-0.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
r2py_kernsmooth-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
r2py_kernsmooth-0.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
r2py_kernsmooth-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
r2py_kernsmooth-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
r2py_kernsmooth-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_kernsmooth-0.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
r2py_kernsmooth-0.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
r2py_kernsmooth-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
r2py_kernsmooth-0.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
r2py_kernsmooth-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
r2py_kernsmooth-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
r2py_kernsmooth-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_kernsmooth-0.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
r2py_kernsmooth-0.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
r2py_kernsmooth-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 261.4 MB

Release files / r2py_kernsmooth-0.1.0.tar.gz

Download URL r2py_kernsmooth-0.1.0.tar.gz
Size 101.1 kB
Tags Source
SHA-256 checksum
How to use checksums
e13df13f5465121bdba51e415b466ec2bfb77f52fc740c4cb997b8f91c22d5d0
BLAKE2b-256 checksum
How to use checksums
087be0372d8f0c566d2f3ba10c62748464bf61b2a726eff21644f8f4513f5936
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp314-cp314-win_amd64.whl
Size 17.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e863cd64af8b37bf26a7ded57c1eccbb026d7367d6fda15fe38b0d080dac7fa6
BLAKE2b-256 checksum
How to use checksums
055def891e4f91b36e1da03e33895491baf1a5195afc99dcb92f0b63c17b254b
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 11.9 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0d70796e394bde81e964aa77b5ed68b5618f0ac0a69e13b2f0b5a00b57cb3b0b
BLAKE2b-256 checksum
How to use checksums
7ba01be02eeacf7bbcd378926570d69494bcc191266f4ea40cb8940d7737f559
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 5.6 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bd6daf54e146df5688162f6d3a82a1eb1b277c457db626485a14bf4d28714cf5
BLAKE2b-256 checksum
How to use checksums
1d98ae49163c88be6942aebaf8435c3d4e118dc5ed37b43d571aea7afcf7261e
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_kernsmooth-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2255d055e19cf4a3b4e2ab823ccad74ba5b6b6a5b28cdc4fb154d7fd70b7149f
BLAKE2b-256 checksum
How to use checksums
6b714dd098434efed02dd14557e7ef7ce1f65575cbd739197d1230e864bd6e41
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_kernsmooth-0.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 5.3 MB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9d76c816d5568699a22d1cb17b91a46eeda97dc918162d8febbd1be387834a63
BLAKE2b-256 checksum
How to use checksums
f39df32cf64db06638f954e017d4e9175a790d86e03e6566a08235d22b94c3c6
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 51.5 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0278b08c0518c221a6d7c5cc007fa120e9737cebce5519d08123c2c39198fa2d
BLAKE2b-256 checksum
How to use checksums
75e22787157795eba97c46509dc9beda86e2525a8335df9f46434ac2ba5e4333
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 54.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0004bbd6045a447738a3e2643c2d6918637aa7e64e972f211c9f3cd4a47d5e21
BLAKE2b-256 checksum
How to use checksums
d835479601ed15aa0b8d65327b316e36833e573d735f15c42c417061e96d7754
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp313-cp313-win_amd64.whl
Size 16.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
22523f3fcae8366d903efd9d79a6e396ddca425dfbb288edea8efbf917386044
BLAKE2b-256 checksum
How to use checksums
a9a49434a43c2673aca0c80e5a1f984cb553054ff63d109370d789becc96f09f
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 11.9 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
26211f29fe02952dff005cc4d2dfaf9f7278712f242d4acd8203c9e0bcacb9f6
BLAKE2b-256 checksum
How to use checksums
70d5a15fafbe762c6af77798857af76423c8d709e1b31d43517a659b4f8d69d4
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 5.6 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
cc91a2e026d6cdbb787c82f512e7655bf9a7bd987ed8a9e2e9cdf17b44fe88ae
BLAKE2b-256 checksum
How to use checksums
c12c5726fe0c74cbbddcf3a01c4d17fe4e95c5448ea7b2e4231b8995113a1608
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_kernsmooth-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6b83c548569b63f4e3196bec606528487679d9e47b24923a94684bc2bdd49d17
BLAKE2b-256 checksum
How to use checksums
a6c46b9e003f792083f3c032737ffffbf4e027f4f0542cf6c5372ee18cb0ac5f
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_kernsmooth-0.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 5.3 MB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ec17227ff722bf3965a67a7a1a57c140f46e0c0fd1691f2891cdd91bd48f926e
BLAKE2b-256 checksum
How to use checksums
b93a1e9c896afaaab24228cf2f8ef2d341e22b75b28b309994383fc6d3809e73
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 51.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f255792da5dc6722097d04e5b146a6296d4aa86f17bbbcd3f4e4097b6806486b
BLAKE2b-256 checksum
How to use checksums
be46d671316d1f760bf2f50c34c60e641b54c5fdf892aa86b3be78a31fea6de5
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 54.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
de4f70abeab08143decf31318ddbbf82bbce453d7e2aea48fc8e40b15024bd7e
BLAKE2b-256 checksum
How to use checksums
744fec303b044ed3c4b9b50af9e1e0ee8fbbb1e8d1b649fb816ef4cdf83d1f95
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp312-cp312-win_amd64.whl
Size 16.8 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
fa5371c96f7b5dd77a08324386c6c3f818840dd036e7fc874f45314b370548b6
BLAKE2b-256 checksum
How to use checksums
74434cd9b7d9d2a85fc9b81aafdf352b94d98a0c432e31f8f4f0daf5a4db6f6a
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 11.9 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fb1597e000781651449af66d561aea5021a1bb9a81037ff3839420db76ec465d
BLAKE2b-256 checksum
How to use checksums
7c4e74dc66282035b07568ea8f03f15c74a98f4b1540e95ae305513f40b8c7b7
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 5.6 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f2eaa5ea9612f0800fa9f61fc98426a5fc27b0fb438b50a4daa6f9c3cc6fb0ba
BLAKE2b-256 checksum
How to use checksums
7a23981d80652239073412ca871d47986a5057e159adfdd46ab5c1a129704546
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_kernsmooth-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3aa1d7ace44a7cc2ff6c9d4dda148093919bb2f7e2a63c2d93e686f8843663ec
BLAKE2b-256 checksum
How to use checksums
beb86883b0fc9cadd7a12096d68e340f4eeaa1326b24bcdf081e6788b3868305
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_kernsmooth-0.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 5.3 MB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
2e024e29f6a108fbf68e87ef3a8d96cac6964b85ad72b10e87bbbe19517355b0
BLAKE2b-256 checksum
How to use checksums
35145f720dc8663014717b00a2891fdd72a69245076e69f1561bb911106ec9d3
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 51.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
99c149c2d215f36439d092654f9c0b3ed01f100aafb61a3a2d77866be0db1530
BLAKE2b-256 checksum
How to use checksums
c09638abcff48f2f32bf8292792119ac0feb7e5af22198492bc4af35e61282f7
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 54.3 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2aa2359f12ea91f2410c9f8fe65befc7874a254f4d7eabb61ccf76c5057b183b
BLAKE2b-256 checksum
How to use checksums
6ba2bd8c7367d29dfc9ddd08d7cb373ee7a7626ffd21e8e8b59388f56ec5b08d
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp311-cp311-win_amd64.whl
Size 16.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f4924acfcc70c8820643f9f5f5d4a6a4667aac9b124e0ee3b3706ff81097c8af
BLAKE2b-256 checksum
How to use checksums
12b033f8d94bdb7c63bcb873d435e9ddb90b4621bb1b70cf58bdb51e698df2ec
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 11.9 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c18f21d68feb97de887b597c0e6606fe13924bb014d22496ddaac549ad4a6066
BLAKE2b-256 checksum
How to use checksums
8e99ec03e93481ecf3a3dac5d2a102fb3d725ba5ab663e60ffe92e8724333168
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 5.6 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e3c9d25b8d3e503e9995104c57a227bf8f65985153c4dc00fa177f11b9348a19
BLAKE2b-256 checksum
How to use checksums
f9928e6669cdfd5bb5a1139072f6e27652877f5c32c7ad098552f292577bd44c
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_kernsmooth-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 12.5 MB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c693e5173776bb4bcd476b66b07d1c79a8e8286efb7d5c967435ca10346dba6c
BLAKE2b-256 checksum
How to use checksums
dc899e5b6f4eaa8f8b45d4d9f0fe0a788aaf7df655d589679996542fe8518312
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_kernsmooth-0.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 5.3 MB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d4d1441a7429afd76a532fbf8d2f80537da89540874a81c9800c08d210199101
BLAKE2b-256 checksum
How to use checksums
f2684c2424f5efcbeafd000f2f53ee9860fb48439aded710c8929bf560f42eeb
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 51.0 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f95b595e0c22d187916467a0c4f3ff3dcb7d98c294c3bfe826db0dbf98d1aa89
BLAKE2b-256 checksum
How to use checksums
4c5fac3bbd961ca650a3ed2f3e8e0bdc24fa603906154f068009dded21670014
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL r2py_kernsmooth-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 53.5 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a5293bd33046e0349ff46d1609f3b6c69574db32930a51c2f641486ba93dfb94
BLAKE2b-256 checksum
How to use checksums
79a1df6131490143955f696bfa4e8694fd6552972533eeb1d1e0c2c46d202b9f
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp310-cp310-win_amd64.whl
Size 16.8 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
0d9111a7dfaede8a854812085ddbef67e9361eada2d7ed3ebdea42a9a1e4039f
BLAKE2b-256 checksum
How to use checksums
dfe3c0e26711dfb0fd73646d42ba800abba30c92e62588373e763b9a8d652aed
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 11.9 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
be5d91b25b2822f3724783db9e1c14d4c56c7744805bf13a0be39dda967bd529
BLAKE2b-256 checksum
How to use checksums
68f6fe236d14e19b32ccf3f9758463b764eb6ffa5378c3e71f6cec76a2fd5ab2
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 5.6 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8828a2461ea36e78e40e615d1ee38c34c326d9f525a5505de61d44856dd55a4a
BLAKE2b-256 checksum
How to use checksums
eb6c9406c468c41da1096de07d87be59c09074922c008dbcc7b6d0e79ff15329
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_kernsmooth-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 12.4 MB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
87ed1196011e67bcacdd1d83d6e7222fccc7653e8f5451ef28033a04bf4bb587
BLAKE2b-256 checksum
How to use checksums
6afa36d2dd796a870cc124def08179c883c92cb1da8bbe50742a22a9c19b8df3
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_kernsmooth-0.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 5.3 MB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3c91b525f23fd0f00cc03d4d3e3da680f912090d30d686f185d49120a05671f9
BLAKE2b-256 checksum
How to use checksums
20ecf641e97fd99a041877a2d3db06c49067337e7527ff09d6c915cc7575d806
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 8, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 49.1 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8d156792123a571251260b1497cce1ebe6b56a971ab825db084e58b9a66cf66d
BLAKE2b-256 checksum
How to use checksums
508f626c047e8b099d26ddc465e9baa2d46ebfefda6d0ec617a26155f9e36e09
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 8, 2026.

Transparency log

Release files / r2py_kernsmooth-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL r2py_kernsmooth-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 50.2 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
924cad2ed9ff0952a1336badd948ee8df7a31c3c4d575377e5991bae0bf60581
BLAKE2b-256 checksum
How to use checksums
0b761abadd0487c043d497705c3e27b1290088c8d05b7571e4c2e62108409ecf
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 8, 2026.

Transparency log

Release history Release notifications | RSS feed

0.1.1

36 release files

This release

0.1.0 This release

36 release files

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