Skip to main content

Near-optimal decision trees via LicketySPLIT

Project description

LicketySPLIT

LicketySPLIT is a Python package with a C++ backend for learning sparse decision trees for classification and regression. It builds on the LicketySPLIT algorithm from Near Optimal Decision Trees in a SPLIT Second and generalizes it with recursive pilot ideas as in From Rashomon Theory to PRAXIS: Efficient Decision Tree Rashomon Sets. For continuous features, we recommend the included binarization techniques from Fast Sparse Decision Tree Optimization via Reference Ensembles, which preserve optimality with respect to a gradient-boosted tree ensemble.

The package supports binary and multi-class classification, optional sample weights, efficient subproblem caching, and threshold-based binarization for continuous features.

See the example notebook here.

Objective

LicketySPLIT learns a sparse decision tree by attempting to minimize a regularized empirical training objective.

For an unweighted classification dataset with n training samples, the objective is

objective(tree) = training_mistakes(tree) + lambda_leaf * n * number_of_leaves(tree)

where:

  • training_mistakes(tree) is the number of training samples misclassified by the tree
  • number_of_leaves(tree) is the number of leaves in the tree
  • lambda_leaf is the leaf regularization parameter
  • n is the number of training samples

For a weighted dataset, n is replaced with the sum of weights and the training_mistakes(tree) penalizes incorrect points by their weight instead of by 1.

For a regression dataset, training_mistakes(tree) is replaced with the sum of squared between the target values and the tree predictions. Our leaves predict a constant value: the (possibly weighted) mean of the training sample target values in that leaf.

Classification and Regression specifics

Labels should be encoded as contiguous nonnegative integers:

0, 1, 2, ..., num_classes - 1

For regression, targets should be numeric values.

Features

LicketySPLIT expects binary input features. For continuous data, use the included ThresholdGuessBinarizer to generate binary threshold features.

from licketysplit import ThresholdGuessBinarizer

binarizer = ThresholdGuessBinarizer(
    learning_rate=0.1,
    n_estimators=100,
    max_depth=3,
    random_state=0,
    column_elimination=False,
)

X_train_bin = binarizer.fit_transform(X_train_raw, y_train)
X_test_bin = binarizer.transform(X_test_raw)

feature_names = binarizer.get_feature_names_out()

Each generated feature has the form

original_feature <= threshold

Full example

A complete notebook showing loading data, binarization, fitting, prediction, tree inspection, plotting, caching, and sample weights is available here.

References

This package builds on the LicketySPLIT algorithm from:

Near Optimal Decision Trees in a SPLIT Second

and generalizes it with a pilot algorithm approach as in:

From Rashomon Theory to PRAXIS: Efficient Decision Tree Rashomon Sets

For continuous-feature binarization, we recommend:

Fast Sparse Decision Tree Optimization via Reference Ensembles

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

licketysplit-0.1.5.tar.gz (26.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

licketysplit-0.1.5-cp313-cp313-win_amd64.whl (348.4 kB view details)

Uploaded CPython 3.13Windows x86-64

licketysplit-0.1.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

licketysplit-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (200.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

licketysplit-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl (206.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

licketysplit-0.1.5-cp312-cp312-win_amd64.whl (348.5 kB view details)

Uploaded CPython 3.12Windows x86-64

licketysplit-0.1.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

licketysplit-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (200.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

licketysplit-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl (206.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

licketysplit-0.1.5-cp311-cp311-win_amd64.whl (346.1 kB view details)

Uploaded CPython 3.11Windows x86-64

licketysplit-0.1.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

licketysplit-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (199.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

licketysplit-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl (203.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

licketysplit-0.1.5-cp310-cp310-win_amd64.whl (345.2 kB view details)

Uploaded CPython 3.10Windows x86-64

licketysplit-0.1.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

licketysplit-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (198.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

licketysplit-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl (202.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

licketysplit-0.1.5-cp39-cp39-win_amd64.whl (349.3 kB view details)

Uploaded CPython 3.9Windows x86-64

licketysplit-0.1.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

licketysplit-0.1.5-cp39-cp39-macosx_11_0_arm64.whl (198.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

licketysplit-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl (202.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file licketysplit-0.1.5.tar.gz.

File metadata

  • Download URL: licketysplit-0.1.5.tar.gz
  • Upload date:
  • Size: 26.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for licketysplit-0.1.5.tar.gz
Algorithm Hash digest
SHA256 decc3df3fa8391c33e415cf4dffeb9932401d982a7cebdd1294160233a78b604
MD5 6f20f057bb41c433fe7f8cd7600b1678
BLAKE2b-256 6cc8398b99c0d268689084e3d5dd9850f739f74b3afc6b07f4c2ce9fcc736c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5.tar.gz:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b219ab26dd0eeda56f0dc202c74e2f286b63adc8fb1ebb64c9ea47a8e0e847e3
MD5 a81320d27583c223b1c28f1d7da660b5
BLAKE2b-256 804641a2ab696c05551950fb9c3584684edd1ba0c54d2f4b38d8b0b3eacbe06d

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53a64040a39a83eda6aed44b7161d66fe3df5f8a85339242002c022a8ecb05a6
MD5 5937cab1c6e52f9dd1cf0cdc50a27c44
BLAKE2b-256 44deb8a105815bdcdc4e4500ec18c87c8bafc7783691a11457a268d4e0380cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1900335417b271f5581858fa0a2bf2ca50432de9d5d2558b8c9cb3b864233da
MD5 be5bae4abd330dcf6ee78da6f6a37ada
BLAKE2b-256 035912f8f4c96ea277aea7f92b291254edc35bf94ec061fd4fa5d70024bc29b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ca3e75b359f9d6bfdd0c09dac2b830f15da596995b11ddb69419fd3e267ec475
MD5 b9c5e8108bd11e6cd2e1abf318f56bfd
BLAKE2b-256 555c1dbcab59cf62a080653d6b6bb0707f4b031db0ed313e3cbbad0822ec0a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 04428f2826eb92736f280181d43f910fb9d091159e3cd3c5c0afdebd7811c628
MD5 54e1b9a3623abbea2b7455cb16eab671
BLAKE2b-256 b7d2b5931880daddc0421177ab04a0eca2e3a207cb667a81de310096d4ebadc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd3b21075768285bd4bb4d6a31b4134c539450dcbef3e728f2840a1886ed6283
MD5 e47b5564903be11edf65142adb8e4165
BLAKE2b-256 99517c5d3f30f692e80d39e71cc59f1a515b7b4f25d5894222b543baa2be3cf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eacd9a783febcf35aa55cc7c0716d6b70b70f3600526daf7857f4f4ad6511343
MD5 60104d5f0cd72083b07af45a4ca52a95
BLAKE2b-256 5114a99716ba3cdb966b65ffcaffa6a4a54be0478b3a3a3ed6acec257cd28ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f50599d0470947bc5048da365c071fd5bdd1ce7333a1dd50ee37fa029aff184
MD5 a3338552343e1e04c45533ab78134a2d
BLAKE2b-256 b475b4b71e651b33602dfcb15c47e13e5e7e03a3f2992147222541cd3be82f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b3a61a4227014e9db9a56d682d0a9af4a9affb391382b7b070eaf74a37df641e
MD5 e789a380ca60b284de68b15bb3efa5ff
BLAKE2b-256 e8323c9110beeb967e04e65d2ac21690ceeaac045d5c5ae8773b6492b7646a41

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7b8d0d0050a09174b3d8f609e4dfdc05d8ccf03cd6ebe83577e334ba82b95c34
MD5 07e4c143578cdbdcd1e6f75fcec6a92e
BLAKE2b-256 84cc91dd54f994e90439f2f04765337adbfe1142bd8b2478831f994d967054c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17c5624f802964ca28022488579345c271c54eab7d6372575638e43c2e391f5f
MD5 c3e6bc30c2a4e29378c9a50cad734d64
BLAKE2b-256 bcdd6dbbd136f3e77ebef0f0d02911e2a95f42ed4a2267640d96037ebf9c39e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d6858ec2ff8983eaa5198e28bfe7703de637268726a58b7614d9eef5ebe23de
MD5 6b0b7073cf0df17b1a8958030331d176
BLAKE2b-256 eb6d8f88fd5b4bafa65aa6e697ac56ed8a574ee0ce862b49536e0c6bb2b93955

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c168bbc3912bf8c7f2dc3da0c0c759d1ad223c7c6bb1f009feefa3b8d396f60c
MD5 1a9a649c81b21653d659dd79b7f1a80e
BLAKE2b-256 11bbc60299f3a254493cc82329340fdbac3afaaa0456617aadc914446982e600

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e30e4a33760bce661701899e58e11a5cf4454687f35e57cc04dc1e0510004d9
MD5 92e9ccf55328474af88f21f27ca5d3bf
BLAKE2b-256 77076859f9f33dbe1124486a07dca6833dff66fac651d668592a0560450d54a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f060dfbfc7ee210932ec45c0a95c92ed72068ef62c8f620b59ba07f3589ee5
MD5 a5289c8d75916e7bde46188f2d2e28bd
BLAKE2b-256 e406ba7e4da4965c5c68cd02484089a6d0871eaf296c68f8c78836125971f3fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d135c3046652715ce4211976af6ba83ae8b58c215a08fac92da8dc4b749ca89
MD5 bf491683eba23171ccbdd447a8e85fe2
BLAKE2b-256 c81265372f00792fb2d0216ec2d6f5a04079cedb7c75158a41229464f2651841

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: licketysplit-0.1.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 349.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for licketysplit-0.1.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f99c55c1b1f1509ce913ca1d0649d63babbce0be21277c4a9d0cb6f2b20db2de
MD5 ff8661838ebce6ff8f3303c1f0cfad99
BLAKE2b-256 a1ab76b6900cd29baa10b93992bd0820576dbcd2dd0e7506676f05016c4358a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp39-cp39-win_amd64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f7dffdeda3057e127e066ba743e7fa404cbcb4d6d3f5b9b3384e8e9648916a25
MD5 94e0b7bd57fce125c8428cb12cf48c16
BLAKE2b-256 9d531c73bfe72997496794896b0b29234ba6122d19e2ce4c961213b8e446f277

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2df7a535945a1c13a7aebee679b76b5ccb613484b94c1fa082162f29c2fdf739
MD5 96c4a33da0a5b92e6026333d91a91531
BLAKE2b-256 aa6020daecb13eb566e4c53c5bf3890920b6dcb80fcf8bd9ee7f0d024a2ed0c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file licketysplit-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87dd09bce5ebf35281d86f33b299dd1e1818b8cb31c19f24bcd50e4471aa5d29
MD5 893c52dde5262093d02000f66423db44
BLAKE2b-256 be18f315159aefb3f70a47df56aad3ce6b6c3b660db4a78fb22e919dfc160610

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.5-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on zakk-h/LicketySPLIT

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page