Skip to main content

drforest logo

drforest

PyPI CI Python License

drforest is a Python and Rust implementation of distributional random forests. A fitted forest estimates a conditional distribution as sparse weights over the training responses, then derives means, quantiles, CDFs, and distributional scores from the same estimate.

The package supports scalar and multivariate responses. Split search is Rust-backed and offers CART, Gaussian maximum mean discrepancy (MMD), adaptive and anisotropic MMD variants, and sliced Wasserstein separation.

Installation

Install the published package from PyPI:

python -m pip install drforest

Python 3.11 through 3.14 are supported. Binary wheels are published for Linux, macOS, and Windows on supported architectures; pip falls back to the source distribution when no compatible wheel is available.

Quick start

The estimator accepts ordinary one-dimensional regression targets. By default, it uses distribution-sensitive MMD splitting.

import numpy as np

from drforest import DistributionalRandomForest

rng = np.random.default_rng(0)
X = rng.normal(size=(500, 4))
y = X[:, 0] + (0.5 + np.abs(X[:, 1])) * rng.normal(size=500)

X_train, X_test = X[:400], X[400:]
y_train, y_test = y[:400], y[400:]

forest = DistributionalRandomForest(
    criterion="mmd",
    n_estimators=20,
    subsample=0.5,
    min_samples_leaf=5,
    honesty_fraction=0.5,
    colsample=0.7,
    max_cutpoints=32,
    random_state=0,
).fit(X_train, y_train)

mean = forest.predict(X_test)
quantiles = forest.predict_quantiles(X_test, [0.1, 0.5, 0.9])
cdf = forest.predict_cdf(X_test, [-1.0, 0.0, 1.0])

assert mean.shape == (100,)
assert quantiles.shape == (100, 3)
assert cdf.shape == (100, 3)

For a two-dimensional response array with shape (n_samples, n_outputs), predict returns (n_test, n_outputs). Quantile and CDF predictions return (n_test, n_outputs, n_values).

Prediction interface

  • predict(X) returns the conditional mean.
  • predict_quantiles(X, quantiles) returns marginal conditional quantiles.
  • predict_cdf(X, thresholds) evaluates marginal conditional CDFs.
  • predict_weights(X) returns the sparse conditional weight matrix.

The prediction methods retain the training responses during fit; callers do not need to pass them again.

Split criteria

Pass a built-in name through criterion:

Name Split geometry Built-in configuration
"mmd" or "mmd_rff" Gaussian MMD 128 random Fourier features, median bandwidth
"cart" Multivariate mean separation No additional configuration
"anisotropic_mmd" Coordinatewise-bandwidth MMD 128 random Fourier features
"adaptive_mmd" Adaptive-frequency MMD 128 pooled, 32 selected features
"sliced_wasserstein" Sliced Wasserstein distance 128 projections

If neither criterion nor criterion_factory is supplied, "mmd" is used. An explicit criterion name takes precedence when both are supplied.

Research and custom targets

The sparse weight matrix remains the core representation for custom targets, metrics, shrinkage, and criterion experiments:

from drforest.metrics import mean_crps
from drforest.targets import weighted_mean, weighted_quantile

weights = forest.predict_weights(X_test)
mean = weighted_mean(weights, forest.y_train_)
quantiles = weighted_quantile(weights, forest.y_train_, [0.1, 0.5, 0.9])
score = mean_crps(weights, forest.y_train_, y_test[:, None])

For a custom or specially configured split criterion, provide a factory that receives the validated two-dimensional training responses once:

from drforest import DistributionalRandomForest
from drforest.criteria import MmdRffCriterion
from drforest.features.rff import fixed_bandwidth

forest = DistributionalRandomForest(
    criterion_factory=lambda y: MmdRffCriterion.from_data(
        y,
        n_features=512,
        bandwidth_rule=fixed_bandwidth(1.0),
    ),
    n_estimators=5,
    max_cutpoints=32,
    random_state=0,
).fit(X_train, y_train)

Statistical scope

Version 0.2.0 is a research release. The core implementation is tested, but the public API may still change. The current fixed-fraction subsampling interface is intended for prediction and benchmarking; it does not claim the inference-valid regime required by the asymptotic forest theory. Missing-value handling is not implemented.

The accompanying characterization note is available as a repository PDF. It studies when distributional splitting helps, compares the implemented criteria, and gives a finite-node analysis of mean versus kernel-mean split signal. An arXiv link and formal citation will be added after the note is posted.

Design

forest structure -> sparse conditional weights -> targets and scores

This keeps split geometry separate from downstream estimation. A criterion can change without changing mean, quantile, CDF, or scoring implementations, and the same fitted forest can serve multiple targets.

Trees support honest structure/leaf sample splitting, explicit per-tree and per-node random-number streams, row subsampling, feature subsampling, and a shared candidate-cutpoint cap. MMD bandwidths are configured once from the full training response; random Fourier frequencies are resampled per node.

Benchmarks and paper

Study entry points live in benchmarks/studies:

pixi run python benchmarks/studies/run_synthetic_splitting.py
pixi run python benchmarks/studies/run_real_benchmark.py \
  --datasets diabetes \
  --criteria cart mmd_rff \
  --honesty-fractions 0.5 0.0

Generated datasets and result files are intentionally not tracked. Tables, figures, LaTeX sources, and the compiled note are committed under paper.

Development

Install the development environment and pre-commit hooks with:

git clone https://github.com/silaskoemen/drforest.git
cd drforest
pixi install
pixi run build-rust
pixi run setup

Before submitting a change, run:

pixi run lint
pixi run pytest
pixi run build-wheel
pixi run check-wheel

Security issues should be reported through SECURITY.md.

Citation

A citation for the characterization note will be added after its arXiv release. Until then, cite the repository and the specific release used so the code and results remain reproducible.

License

drforest is released under the MIT License.

Release files for drforest 0.2.0

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

Source distribution (sdist)

Source distribution for drforest 0.2.0
File Size Uploaded
drforest-0.2.0.tar.gz 45.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for drforest 0.2.0
File
drforest-0.2.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
drforest-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
drforest-0.2.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
drforest-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
drforest-0.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
drforest-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
drforest-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
drforest-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
drforest-0.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
drforest-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
drforest-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
drforest-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
drforest-0.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
drforest-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
drforest-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
drforest-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details

Total release size: 5.9 MB

Release files / drforest-0.2.0.tar.gz

Download URL drforest-0.2.0.tar.gz
Size 45.8 kB
Tags Source
SHA-256 checksum
How to use checksums
82069b56d9ea6aba69425c1b7a60acdbeadcc88c144a62e89510cca419e7534a
BLAKE2b-256 checksum
How to use checksums
b72eb745c2c44d2b09dd156482a2b3089b2c209a9f7488baf9473378113f9f15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp314-cp314-win_amd64.whl

Download URL drforest-0.2.0-cp314-cp314-win_amd64.whl
Size 267.2 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
ded35e6388ae1fc610b08acdb9679e77b97746c0fed7f6254f98b58ad8ecb2ab
BLAKE2b-256 checksum
How to use checksums
5b1076abe3ec77caedbed5186c958fc07667e625c027eee9ce66f4eddae9357e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL drforest-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 433.9 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
9f07a8650310247bc85a25452cb8600eb04f867d9b2bbe966bc9121880af0f2a
BLAKE2b-256 checksum
How to use checksums
f0c0ffe1139b82c8075bed38eee5fdf3bd1821a8d23ffe695759f04c517ea3b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL drforest-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Size 382.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e527d9c139b06e757d865314c93dd2e86ca8c2c57672ef09943c26240f48963c
BLAKE2b-256 checksum
How to use checksums
bde16a48a6e225836b0fa8e07fed220ec5330e033042393312bc8a684365ac45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl

Download URL drforest-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 388.3 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
31344a8979dbb7d28d08b24d254c4461fd102e935d246359fd5a6cab991b4a49
BLAKE2b-256 checksum
How to use checksums
74cc019fc566d6b7b7fae29a281610f2dc236269a82c7ae4a556195da9eae893
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

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

Download URL drforest-0.2.0-cp313-cp313-win_amd64.whl
Size 267.1 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
31ba2b05fdafb50e630426dc4432c6c0525c6db77edbdd91802481ae70520a12
BLAKE2b-256 checksum
How to use checksums
324684fbbdf1a7b482d5fe654671a42f4135e32a88bb4793085a62a6b533584c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL drforest-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 433.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d4806b2e2f3337dbf14d2518258bacf0b0db2de3b8a3d2fb01c4874b524da14c
BLAKE2b-256 checksum
How to use checksums
76d9dcef430c6c7c80373235a127c86bdda23aafc220024c8ee74a16f5250861
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

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

Download URL drforest-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 381.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5229302a5188c54142e8a662d9eac9cb348eb6d0823548fea6a9aec4e9d0bdab
BLAKE2b-256 checksum
How to use checksums
e2c859fa615e46e1d43be9ed5b8893a3184cc8471192193321d66e842bcf9fb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL drforest-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 388.0 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
83b37d479259d38dd3b0caad5979254e3474a2b58bc3d1dbb029f7b3dac26cbb
BLAKE2b-256 checksum
How to use checksums
59331774ed05c33ef451f7cd304643d2004175f9ad75bd8b2f8e01c28368b47c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

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

Download URL drforest-0.2.0-cp312-cp312-win_amd64.whl
Size 267.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
3f5b3736b1065acb95aecb3885db9caf8d2244502991410629a1ca7ce82bd507
BLAKE2b-256 checksum
How to use checksums
064f635726a4017f9c1a7ca86039bd90ebcfae0a414d743c00d20a33502c2c23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL drforest-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 434.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5c8f7f5734c4b25dfc78ddf7a2b43bef7554100fc3c2e436b5e960ee14de4bc9
BLAKE2b-256 checksum
How to use checksums
88fd66048affa6229928e83f651cec3ca2c2388fd5fee0df93849e86440e4a33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

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

Download URL drforest-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 382.0 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
986229cb0fe31a94c99bb1cac6b8909807b96334d3839d67177c619b9c95571d
BLAKE2b-256 checksum
How to use checksums
0b4d5b7f27432feaa7439b77637ef7eec92cae5cf490ab0716cc7c3540d4dd38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL drforest-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 388.0 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
b4bb308587f3b96751d5aa7914933c32ecd6121ae92e3109e722081679899f61
BLAKE2b-256 checksum
How to use checksums
ee72aba388ff1755822373a229f3a66d2f3b958a046c4be2b460803f024bccb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

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

Download URL drforest-0.2.0-cp311-cp311-win_amd64.whl
Size 268.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
db0edc6f3b52cd4e18a30e946f3f00f055f6b591cbe9f77e3b62aa5c3245f0a6
BLAKE2b-256 checksum
How to use checksums
42bf662c296b5c6c6d3a2fd5b5f3fe979409315c1f9711043f286f0dd5511d78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL drforest-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 435.9 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e0979d2a7e6337321e409d317aa66d02097f4dd0d8d165ddae73f15f681c8076
BLAKE2b-256 checksum
How to use checksums
a8d089577b05c97aa462ee868bf3691aad3f6a0d54da50ebfb4130d7354d0f75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

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

Download URL drforest-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 383.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a9d2570ff4e8315a7009d2b630d6a6bbc5daeb00c82bc39abc9672bd9289fb34
BLAKE2b-256 checksum
How to use checksums
305d1df6a43002c32951c9ab068d6da15641904fcd2bb1c37e7c86e06c499a0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release files / drforest-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL drforest-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 389.5 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
05c4207abbc3a0b6d6d2dfa71498c8101db6799732004b3799fcd7ce5ee2aab6
BLAKE2b-256 checksum
How to use checksums
367b53094f8a018cf5e63bc0308a9dce6c094313209fd68ab9fa0880576a17ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

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 Jul 1, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.2.0 This release

17 release files

0.1.0

17 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