Skip to main content

r2py_rpart

A Python port of the R package rpart (Recursive Partitioning and Regression Trees). r2py_rpart reimplements rpart's original C recursive-partitioning engine — compiled directly from a lightly adapted copy of the C sources and driven from Python via cffi — and translates rpart's R-level functions (formula handling, pruning, printing, plotting, prediction, cross-validation, ...) into Python with numpy/pandas, aiming for output that matches R's rpart as closely as possible.

Trees are fit using the same recursive-partitioning algorithm as R's rpart: classification, regression (anova), Poisson/exponential (survival), and user-defined splitting methods are all supported, along with cost-complexity pruning, surrogate splits for missing data, and cross-validated complexity tables.

Installation

pip install r2py_rpart

Prebuilt wheels are published for Python 3.10–3.14 on Linux (x86_64/aarch64), macOS (Intel/Apple Silicon), and Windows (x86_64). If a wheel isn't available for your platform, pip will build from source, which requires a C/C++ compiler (GCC, Clang, or MinGW-w64 on Windows) — no R installation is needed.

Quick start

import pandas as pd
from r2py_rpart import rpart, print_rpart, printcp, prune, plot_rpart, text_rpart

iris = pd.read_csv("iris.csv")
iris["species"] = iris["species"].astype("category")

# Classification tree
fit = rpart("species ~ .", data=iris, method="class", control={"cp": 0.0001, "minsplit": 5})
print_rpart(fit)
printcp(fit)

# Prune with a chosen complexity parameter
pruned = prune(fit, cp=0.02)

import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(8, 8))
plot_rpart(pruned, ax=ax)
text_rpart(pruned, ax=ax)
fig.savefig("tree.pdf")

See examples/classification_tree.py and examples/regression_tree.py for complete, runnable end-to-end examples (each paired with the equivalent R script and side-by-side R/Python output for comparison).

API overview

r2py_rpart mirrors the public functions of R's rpart package by name:

Purpose Function(s)
Fit a tree rpart, rpart_control
Prune prune, prune_rpart, snip_rpart, snip_rpart_mouse
Predict predict_rpart, pred_rpart, xpred_rpart
Inspect / summarize print_rpart, summary_rpart, printcp, path_rpart, labels_rpart
Plot plot_rpart, text_rpart, plotcp, meanvar_rpart, post_rpart, rsq_rpart
Diagnostics residuals_rpart, importance, roc_rpart

Testing

pip install -e . pytest
pytest tests/

Many tests compare r2py_rpart output against R's rpart running via rpy2, so an R installation with the rpart package is required to run the full parity suite.

License

r2py_rpart is a derivative work of R's rpart package and is distributed, like its upstream, under the GNU General Public License v2 or later (GPL-2.0-or-later). See LICENSE for the full text and NOTICE for attribution to the original rpart authors.

Authors

University of Notre Dame

Release files for r2py-rpart 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-rpart 0.1.0
File Size Uploaded
r2py_rpart-0.1.0.tar.gz 786.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for r2py-rpart 0.1.0
File
r2py_rpart-0.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
r2py_rpart-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_rpart-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
r2py_rpart-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_rpart-0.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
r2py_rpart-0.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
r2py_rpart-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
r2py_rpart-0.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
r2py_rpart-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_rpart-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
r2py_rpart-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_rpart-0.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
r2py_rpart-0.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
r2py_rpart-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
r2py_rpart-0.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
r2py_rpart-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_rpart-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
r2py_rpart-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.27+ x86-64, Linux glibc 2.28+ x86-64 Details
r2py_rpart-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_rpart-0.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
r2py_rpart-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
r2py_rpart-0.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
r2py_rpart-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_rpart-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
r2py_rpart-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_rpart-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_rpart-0.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
r2py_rpart-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
r2py_rpart-0.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
r2py_rpart-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_rpart-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
r2py_rpart-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_rpart-0.1.0-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_rpart-0.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
r2py_rpart-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: 27.2 MB

Release files / r2py_rpart-0.1.0.tar.gz

Download URL r2py_rpart-0.1.0.tar.gz
Size 786.5 kB
Tags Source
SHA-256 checksum
How to use checksums
f957c0c4c06ebf1b7df6811f5ff398247a0596766b5a9c8c95e50adb0f62ff62
BLAKE2b-256 checksum
How to use checksums
e970c95773996d6bf1fc53bb739c30c74029d9a9ab16bd802155af0df098668f
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_rpart-0.1.0-cp314-cp314-win_amd64.whl

Download URL r2py_rpart-0.1.0-cp314-cp314-win_amd64.whl
Size 2.0 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
70352d8a33481d947449b518905cbefb925a0cc493a747676ab835cda1ce5954
BLAKE2b-256 checksum
How to use checksums
9e4dff06d78657c665f1b2a2787c31f9ea031bee24e2127d0090e90722f1aa2c
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_rpart-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
42dd7f7ce1e76a53fdfe692f998b5c3e9226680d6368705c14202669eff3d407
BLAKE2b-256 checksum
How to use checksums
261168355af7e1b9424f3b444575fec3c4b2fe244642fae9421b5e10c2393a39
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_rpart-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
abdfb90fe5208ee63b3d8bf3dbe51bcf81e3a9776fbc761f59007fc537229c19
BLAKE2b-256 checksum
How to use checksums
c8eb14ab9bff6abd0332c1ab9b786148c2d9e034854639ccfe5672620a3a1d36
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_rpart-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 258.7 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
476906260c9e98455bb59f1d5b59d8691f28b64ac9e83b69e3fc75d973d80717
BLAKE2b-256 checksum
How to use checksums
e861b40c3ecb5eb56035799a19a0160e96fd0cbed115bb0107d9d6989d9b544a
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_rpart-0.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.1.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 252.2 kB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b2fa865567f492c4ada02cfa57c1b8f8bc575e1c17d37a0d653d5b327a470e3c
BLAKE2b-256 checksum
How to use checksums
c5d64d5c9ec65ec93caceb54644bf920c772ccbf8ff3fb6d654c23e39ac1fab5
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_rpart-0.1.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 138.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
31c6707c02f855f7e2d12328d107817933599323a8e64e432e1ecaebfc1f7725
BLAKE2b-256 checksum
How to use checksums
439b3743f9ec1a51a236c4626e51e823da8624b75167ab32b4cdf15c7097298f
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_rpart-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL r2py_rpart-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 142.6 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
a935c91370fd95055da2f4a0e9c12e5f0eb8f1c707eb394f86eedcec25450100
BLAKE2b-256 checksum
How to use checksums
176982c44aad7a5b80f50b3fe44d1d025effca354246fe7c4bd75fef539d884f
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_rpart-0.1.0-cp313-cp313-win_amd64.whl

Download URL r2py_rpart-0.1.0-cp313-cp313-win_amd64.whl
Size 1.9 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ca8388e76f3d73c2416f1f47a100dc239f0661863e37ce6ac4eb1338622696b8
BLAKE2b-256 checksum
How to use checksums
587bbecc1bf3662f58b0de9507740e96773e5a5f80f4234223a6eeff50a357be
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_rpart-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
74f24cc1a19d25114c87fa9624d3ce6c882b243f4c74d24d0549d06e28709d00
BLAKE2b-256 checksum
How to use checksums
9d0bb821847d3c71d49ed346212daa58cdc04665fe4c0807f59fec3e7721d56e
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_rpart-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2c3d2bc97e950cc937acfbe3486f7fd92059a2d3621ce6ce2f13381bcafadbcc
BLAKE2b-256 checksum
How to use checksums
ca6df2acadf5bc83a091fe51dd5a04966a742ff577e7e38007a38a0a07c0dfc9
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_rpart-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 258.7 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
55d3a1d32d6dbd9b233f6a455e62f2ef903f98031f6a6e0c17f2749a1aad52df
BLAKE2b-256 checksum
How to use checksums
906e6b4d5a88fa60505d11ba1537762d80c2ed880e2f0943699ec9d10152b8dc
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_rpart-0.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.1.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 252.2 kB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5267764d0f89b17dc5dd36eca0e635833ae81f344907b2a5d94f4fb8ebb0e9f2
BLAKE2b-256 checksum
How to use checksums
ed6178339bcedd70f39e6c76aed8cd110c5c0176d50704e44e429ef11b0b4027
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_rpart-0.1.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 138.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
456d1a2b40ef24732c8f20adc37b5a018ffa98fded8a1e3b947e8b96b3a9ead6
BLAKE2b-256 checksum
How to use checksums
39b14327bddd0ea249f6018761b56de8dcc694a98ae5fb8bed5d22b5a38197b6
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_rpart-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL r2py_rpart-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 142.4 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
bf49fb4c50e736f340fed8ec1eff30b4e02f0fff2144fff760ffc11022029f89
BLAKE2b-256 checksum
How to use checksums
e9c0de3393129edb47fc57cb36732e89bf6a81bc125f681e506a0f943e536069
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_rpart-0.1.0-cp312-cp312-win_amd64.whl

Download URL r2py_rpart-0.1.0-cp312-cp312-win_amd64.whl
Size 1.9 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f3a231bea8428a4a64a9cbf1ac41b78ff56796bb5e03eae3cf52c1252d5c5ba3
BLAKE2b-256 checksum
How to use checksums
61917d395bafc31fe757d0a690b1dc4a2c79238ca7d2c3c7ae047fd92306e342
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_rpart-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
14dc59dcd9cac28e68a995bbd323398bab2ac5b6c652ed9cb199605b7ab23e06
BLAKE2b-256 checksum
How to use checksums
805e724ca28791116aaeabd9bf86fae62c86387f070cb3727a9d461142537c06
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_rpart-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1ec985cefbc52d90170b7525cb3b5edf810274a2b38147cda2535472b453fa01
BLAKE2b-256 checksum
How to use checksums
a798acdba751907702e59f855bc0199d8c36d1af4bea50521e665b19ef3876ba
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_rpart-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 258.7 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
62a05442afc1006c0d3c62524a93d99a3891116f62486cd0a43364b664e6c253
BLAKE2b-256 checksum
How to use checksums
59d9c684896815459ee32a68dd1f33b36eb440226bdc28afdfa8bc09917051fc
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_rpart-0.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.1.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 252.2 kB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4d6c0e2098af1d991ad4f95cc5854caad73c9611d727dcd28fb234f2a895f1aa
BLAKE2b-256 checksum
How to use checksums
313836a5dc48720e0781fcce2ef4dcd9c744808d38296f6766ed05c86e049412
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_rpart-0.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 138.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0a7856fa563a551c6a82aaea2dbb71e453d08a62a43de8a3faf2ecd4b2934315
BLAKE2b-256 checksum
How to use checksums
8c347440faf4a8eed52003377634c1bf525393cefdca77e0744b35e6edd75c17
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_rpart-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL r2py_rpart-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 142.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5f220a56e46846cd7535cb49ffe372f16dd9f4cb08224f207cb6f44cde97f2ea
BLAKE2b-256 checksum
How to use checksums
d9081bab54dd6177e49ee496ec7c24d0430a6c81dba47308c0dce5ee25e50446
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_rpart-0.1.0-cp311-cp311-win_amd64.whl

Download URL r2py_rpart-0.1.0-cp311-cp311-win_amd64.whl
Size 1.9 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4b8f8ca43109ee0ffc700fdfda67b93c4f6e0dc13b1b887b171ab8d36d00a031
BLAKE2b-256 checksum
How to use checksums
2b30903faf5e7b4cd4e124851971e92953c5985999e50725f811c66f40cf2f66
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_rpart-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
337d9d03ee362fe87a0de5dd41bbcf777e16eb320c7c3dfb9ab6f59e2d0d0108
BLAKE2b-256 checksum
How to use checksums
63e6cce450a08dd15e0313353432ce394283b883667821b5e9e536991da99457
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_rpart-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ebb7cc65274be4e4ef18974bd7413da6376aab30d25291fabf09f08fac4197c2
BLAKE2b-256 checksum
How to use checksums
5007c654e9244cf48ae2533d1844bafcb05124c4d61ad7c2b6638132aa2001c1
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_rpart-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 258.7 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7a69d48a94d8f4328fcbaff4013a0924f35325217bcaaa25ff4ee2a270247801
BLAKE2b-256 checksum
How to use checksums
f166b768dc833aa811f07b3f046788f0a4841be78191ea8d6c753cee1e2507aa
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_rpart-0.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.1.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 252.2 kB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5c68fd10fe37017a6cdf87528ecea53b13d7328cbf63a341b5f76b87cadbefa0
BLAKE2b-256 checksum
How to use checksums
8874e1302adbcbd6980ca2013d0752721f79da1472fbf8300bca47de0c6eeb05
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_rpart-0.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 138.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fb243280151cfcab7042510516ce5504ede056fef386c4422f7702ccd772ed14
BLAKE2b-256 checksum
How to use checksums
d3bdbfc87483afaf6c87c281d408b933480316784e45253a2d32d6bd8cf369cd
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_rpart-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL r2py_rpart-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 142.3 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7983b011078f46378b254e7f5dd2ee6ad2a26ad43c1b3bdea0a8b471d013e4b2
BLAKE2b-256 checksum
How to use checksums
0ee8dad4361f45027fa92ebf81f9525a570f8b91781e23a5d50c8fa1af0b14a3
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_rpart-0.1.0-cp310-cp310-win_amd64.whl

Download URL r2py_rpart-0.1.0-cp310-cp310-win_amd64.whl
Size 1.9 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2962dd20dd633825e033f4b6b5a32337192efafb0a746d065d603f33638034bd
BLAKE2b-256 checksum
How to use checksums
00f3083889536a655995f9f95c0fb50641545b08f742785f598a4fdcbfb14132
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_rpart-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL r2py_rpart-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2eff2fe8a899bad008b42c3b85ef06e39f69693c35d7c9cbc591678c423cb32b
BLAKE2b-256 checksum
How to use checksums
7211a34ea9e1461f0e8f3c77c461f4affcd5d507a92d93b5944cbb97ffb577d8
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_rpart-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL r2py_rpart-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
39d074052b566d7eee64f80ab11ab6c22c7bed960c61cb92d2ce743ee5a5ea9c
BLAKE2b-256 checksum
How to use checksums
3001704f90c75b81dfb7aa0460bfa25c8c820aa3e1bde019a2e451b9b3720774
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_rpart-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL r2py_rpart-0.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 258.7 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4fe1fca11f6fe0c2c7cde2596b4ce056d294a7deba3e673317eae0ed15015896
BLAKE2b-256 checksum
How to use checksums
6fc319bfc22abe4dc50fe96c4a0a2e4d97d49b07bf31ef6428f7c26319f128b1
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_rpart-0.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL r2py_rpart-0.1.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 252.2 kB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8b49d31525106ff4ddfaa0d22a89a2e9803d3bdbb86486add87493ab4bfbb5ea
BLAKE2b-256 checksum
How to use checksums
e3a9da70a6cac06f1db7a5ba34e4491d13638cff91d4e327cb4bfd095476c431
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_rpart-0.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL r2py_rpart-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 138.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
baa49af4ad190961b3fded12605e079f4b4cf4aa8e2e91457d98c935a1d4da03
BLAKE2b-256 checksum
How to use checksums
25ca941aca4aa7c2bcf70e5ca300891425ffe9d1760b731c86ae32a550284a8c
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_rpart-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL r2py_rpart-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 142.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
04f40b986fec2c160351879407444070a6553a14dd1c638256975c09388263d8
BLAKE2b-256 checksum
How to use checksums
6ebf68f88f81e36e1e8c030667431b63851824dcdefef6bdb4d816fc0d1f0c19
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.2.0

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