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.

Citation

If you use r2py_kernsmooth in published work, please cite all three of the following. The numerical core of r2py_kernsmooth is KernSmooth's own Fortran code, retained unmodified — the results you obtain are produced by Wand's implementation of the methods in Wand & Jones (1995).

  1. Wand, M. (2025). KernSmooth: Functions for Kernel Smoothing Supporting Wand & Jones (1995). R package version 2.23-26. CRAN. https://cran.r-project.org/package=KernSmooth (the original package, whose Fortran routines this port embeds)

  2. Cai, Y. and Li, J. r2py: AI-Assisted Conversion of R Statistical Packages to Python. (in preparation) (the conversion method, and the validation evidence for this port)

  3. Cai, Y. and Li, J. (2026). r2py_kernsmooth (version 0.1.1) [Computer software]. PyPI. https://pypi.org/project/r2py_kernsmooth/ (the exact artifact executed — please cite the version you actually ran)

For the underlying statistical methods, please also cite Wand, M. P. and Jones, M. C. (1995). Kernel Smoothing. Chapman & Hall, London. ISBN 9780412552700.

BibTeX

@Manual{wand2025kernsmooth,
  title  = {KernSmooth: Functions for Kernel Smoothing Supporting
            Wand \& Jones (1995)},
  author = {Matt Wand},
  year   = {2025},
  note   = {R package version 2.23-26},
  url    = {https://CRAN.R-project.org/package=KernSmooth}
}

@Article{cai2026r2py,
  title   = {r2py: AI-Assisted Conversion of R Statistical Packages to Python},
  author  = {Cai, Yufei and Li, Jun},
  year    = {2026},
  note    = {In preparation}
}

@Misc{cai2026r2pykernsmooth,
  title  = {r2py\_kernsmooth},
  author = {Cai, Yufei and Li, Jun},
  year   = {2026},
  note   = {Python package version 0.1.1},
  url    = {https://pypi.org/project/r2py_kernsmooth/}
}

@Book{wandjones1995,
  title     = {Kernel Smoothing},
  author    = {Wand, M.~P. and Jones, M.~C.},
  publisher = {Chapman \& Hall},
  address   = {London},
  year      = {1995},
  isbn      = {9780412552700}
}

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.1

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.1
File Size Uploaded
r2py_kernsmooth-0.1.1.tar.gz 103.3 kB Details

Built distributions (wheels)

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

Download URL r2py_kernsmooth-0.1.1.tar.gz
Size 103.3 kB
Tags Source
SHA-256 checksum
How to use checksums
430b4ddaaa4b89a2222307130ba31afec7b96f810cbe9b79db69a7feb15f2bab
BLAKE2b-256 checksum
How to use checksums
eccbce853aa1766bd460a4c0e7cc689b2b98e82c5331a067fc8f0e9d92d86ab9
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp314-cp314-win_amd64.whl
Size 17.1 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
09f362587685ad07199ce4110a5f06734062dc9a6d9ef55169eee88bada6b072
BLAKE2b-256 checksum
How to use checksums
367415c4e5e88ce0f6575d007f461287dbc862c91e2286cbf9b0d6da9b84725c
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
9b19e128049193bf8800928c0eeaf20e3e4e7971421cb3a3ae851dc224b800c2
BLAKE2b-256 checksum
How to use checksums
2cae70af19b7b31c36adb0cbee971d0bf9520e90b61fec60cc8eb97b5485938f
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
c7f58c06310529384697c8afbe176481a5e31fb648706a5443b526304350bdb3
BLAKE2b-256 checksum
How to use checksums
1acab01fcbc7aa8cd79778614b21fab5e9f89377e389af1ce6ff863b71c09b00
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
d29c3b939dbbdcfb6ae6d8d9a84c2d790c9cd4d9b08b2dbdc7ffde3cd3cff374
BLAKE2b-256 checksum
How to use checksums
83d1dd8d37655efebc66e89718dca750ce5128f4185803715d36999f853025d6
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
df2e14dcbca5c0432445d81f8b15525d32301db1c81d9ff0e846d62164aef882
BLAKE2b-256 checksum
How to use checksums
bdc23eb4567e483d563e8a58dc044c074e2a1d654e8f556af66e34a9c9f74db2
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Size 52.7 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7493afdbe5693fde46a81f39580562cc46278df25eed59123b0edd7c25dfec43
BLAKE2b-256 checksum
How to use checksums
752d330ecf034a2ae103afa7acec985ec63bb3226748117081f93224a7f34047
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 55.6 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
596782649613c3eb8bbdf8f5317ab18a27511e23ba310e9716a2d82cbc3f8e6f
BLAKE2b-256 checksum
How to use checksums
ec51a93d4aa7b4a75bd809e9d5c34a0da6008bcf920adb0fa67bd3c6aebefada
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp313-cp313-win_amd64.whl
Size 16.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
6dd79f55d0c0012a9c4d0cb7ded881afc75424b7de6c8fe77dfe81e17ddc72ac
BLAKE2b-256 checksum
How to use checksums
056929e02585792ac8a04339b56b498235cc09125fd893ff5aa3a8086ce14f20
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
f53f5275e8507ca8d47ca833213f3ce20b03bbbba3d84af48d26acc9e4715cb6
BLAKE2b-256 checksum
How to use checksums
959f87833bfbf76cebfad52a0f7c329c6b09d954245528f476df2d6eef86e76a
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
7648c11eb8d6cb535c27992cb02844c195f2744b0be6828042f5ee5f023f4bfa
BLAKE2b-256 checksum
How to use checksums
941a55b6887215cfed68e0951681fb52c72e171c92dee9ac657d98f57a9a1f22
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
ddb28d32819893a12e2d89a611e13356fe3a98bf49e707ac437e8ec7f01291ec
BLAKE2b-256 checksum
How to use checksums
4c352007f3cf8ccf57969eb24ca5116e49113ebc187db8f56ea5ea4db0d0b8e0
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
c9e8d2ea2c97a8dcc41aa69956f839836aa232d66cbb69daf3c1347a889c7ce2
BLAKE2b-256 checksum
How to use checksums
2956b6134d0e2c73359560f53d880a667a2f0a8eccb743c960df864a2b1aab7c
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Size 52.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
074c90a824941989a1dad195a0b2e1f1fe4e00a7a325ed90d384b60c170dc08a
BLAKE2b-256 checksum
How to use checksums
219ca3622829f6edad75bfc733c070cb4db7935e753ce3f60e715501adace494
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 55.5 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
56e91cb6dfb0eb4326ccfebf9a6f637f2e36aab65323fa8841fcbb6278c048cd
BLAKE2b-256 checksum
How to use checksums
931cb58aef95d12c477d026459aa2b9274ae801ce72a0ec5e04e3448a8d7b58e
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp312-cp312-win_amd64.whl
Size 16.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e77551c9903988d7eb6a747f70bbadfdbc9f2b429058a09c44740a0c6e60b39d
BLAKE2b-256 checksum
How to use checksums
19159dd94419f89ac4c5b7c6b8f085c64dfac45b38139f7458c0137888e85798
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
77933a1dc0acc4837f801159070a92c223285fcc44bc62404e34011dcc2f503e
BLAKE2b-256 checksum
How to use checksums
251cfa9016d0bf8760e8629a8a8146545bedeb38acbf3876989dfb35c0ff3e82
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
b5c1d6d662d9074008831ae0ea02d157757854e97d3f20526e98197430e67941
BLAKE2b-256 checksum
How to use checksums
7929a552d725c0b1a70fc50d0a260f711fc03a68143467430202debf2fd37b22
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
9d14c48dd87be932947e550ea2f238c37026293b4416d6bf82fcb0b0c6c21a20
BLAKE2b-256 checksum
How to use checksums
96e5f9d79f1beeec7ac52bb35c1d76bd6043f962265105c11690d780e35fc461
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
c0edb604122e95d8f83f9d87a6053889ddad79424a22d72999fe737b8a12f7e7
BLAKE2b-256 checksum
How to use checksums
b65baeeeb10e32e1217de0d7718c7dd3d03479d8b7c3ccbe5322ff17d4cfc7b9
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Size 52.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2635d7e79fba1251ca9710578e398c9cb882c1b6d5b57c904257c085c371d515
BLAKE2b-256 checksum
How to use checksums
5b7321e80a79175b6c0a32164c7a3a241e4245b76efeaab0b63d28a847cec30e
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 55.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c1d78dc296aed43cb179c6666ae31d99b8e14721ba87610ad623740445c415d7
BLAKE2b-256 checksum
How to use checksums
bfb6190ea89ce931a1fb7cf479f7ba0875fcda61eb10c239b973dff9834f827f
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp311-cp311-win_amd64.whl
Size 16.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d8211db6b40a6a4165f607b4b2fa172d553c304542f8d44112745265f837e1d3
BLAKE2b-256 checksum
How to use checksums
866add407c4c849409517e4175bd78a8192331cd606cbe2b17b96acbb62f9cf8
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
629d9991e7da8ca1167913cb14afc296dcac5db0120a4d136cee31d9c2f3ad26
BLAKE2b-256 checksum
How to use checksums
1456f6c6547ffc7db54d5b84cf96c12a8893013439f50368a12576f747e2238a
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
a7d4597be6a3b7b293f9f20be0fef46ff87cf637f7a502283d5948416e7c5bbd
BLAKE2b-256 checksum
How to use checksums
af18f0ea5bfb7380273fda943bf820599798ae33f6f15c88b3f570419bd33b74
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
90e76f3fba61d1298a8db68e28b6eba99a40fbd189e29e593211afb4d1b4da93
BLAKE2b-256 checksum
How to use checksums
486aa21aeb4f93c6bc87e1c84b6db098519eee50b1aad8f13a71547d48f73a43
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
57e2c596b2266866d314fbb22358ad28f69855cc241e5557d14030171d9f24c6
BLAKE2b-256 checksum
How to use checksums
e6066870a874c7b1ac4149cbef648e842dd688de2f77cb70eda397cb23ed494b
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Size 52.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
81c994438d65ae4fe254a442d2fd3a4bc7cad2a1ddd0ab95715f1b9ca17c0163
BLAKE2b-256 checksum
How to use checksums
a13398aaa332cd30c4da58c66f223898dda62a0631819ddeee22980e4a273780
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 54.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2a78617a41c9230cbff2ebbd5db99dbccc17a5b10662c59dd58ccc28c0e4681b
BLAKE2b-256 checksum
How to use checksums
59e45d4adc8314ee2489e559965d4fc5c47304e9194f83618fcbc9b9792ca3ed
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp310-cp310-win_amd64.whl
Size 16.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
741a8f9d19fbc44cd95af151ff4f4c319110be5649fd61d55899c27fdd6ce604
BLAKE2b-256 checksum
How to use checksums
08c4b45e2a4549fa68d98d2f6823f7fc4cd90f542881a8f51136550b046a9d48
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
578420345f9180d1c4943de0e96ce2532f40fe49d7647e2083435057a407c788
BLAKE2b-256 checksum
How to use checksums
585792e27b792205937c4756a38b2fa2fd95b82becb6eb81930532be67b8207d
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
565dfaaea79c82de872c4717d57246ee2a4777181ebe7a970830fe6a18b874dc
BLAKE2b-256 checksum
How to use checksums
f47891ac1d9d8f58a6bdc2e121a155038b70062f178855ed207486885a459d3c
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
fce5b93a1e9f2de8d0ab902c23dd8fa2d576f1d279b1ec0d323c58ab8f986488
BLAKE2b-256 checksum
How to use checksums
9fc6af0f1741bfa872443c19e1e7e94b57438cb71fcbf093b61d7741d5429452
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-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
7b4e2126989d1aa9dd0d84d59bdf8d45325d9ca49572202c73f107db35a131c4
BLAKE2b-256 checksum
How to use checksums
674a9877571e233e2fedf7d1ae4989bdf1faafeb7966f38a549e4bdaa39592dd
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Size 50.3 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f77d54062b3d8a234a5ad5b1ae9dc8861756ff89311aad292c584f005502bd68
BLAKE2b-256 checksum
How to use checksums
ce946e4abafdaf5c7af23f9ad41acc002166aebb670a9be787d49a8d2d462de2
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 16, 2026.

Transparency log

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

Download URL r2py_kernsmooth-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 51.4 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c86ef6aa4ab134eda4331949d3d41962be8d3ae27561fe9841a12eb1d1c74576
BLAKE2b-256 checksum
How to use checksums
3f3772f9632976a1f345697a2f838e9563c055fe6ea2986055b24012707c68e8
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 16, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.1 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