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, regression, 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.7.tar.gz (26.9 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.7-cp313-cp313-win_amd64.whl (352.7 kB view details)

Uploaded CPython 3.13Windows x86-64

licketysplit-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

licketysplit-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (207.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

licketysplit-0.1.7-cp313-cp313-macosx_10_13_x86_64.whl (212.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

licketysplit-0.1.7-cp312-cp312-win_amd64.whl (352.7 kB view details)

Uploaded CPython 3.12Windows x86-64

licketysplit-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

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

licketysplit-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (207.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

licketysplit-0.1.7-cp312-cp312-macosx_10_13_x86_64.whl (212.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

licketysplit-0.1.7-cp311-cp311-win_amd64.whl (350.5 kB view details)

Uploaded CPython 3.11Windows x86-64

licketysplit-0.1.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (206.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

licketysplit-0.1.7-cp311-cp311-macosx_10_9_x86_64.whl (210.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

licketysplit-0.1.7-cp310-cp310-win_amd64.whl (349.8 kB view details)

Uploaded CPython 3.10Windows x86-64

licketysplit-0.1.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (204.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

licketysplit-0.1.7-cp310-cp310-macosx_10_9_x86_64.whl (208.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

licketysplit-0.1.7-cp39-cp39-win_amd64.whl (354.4 kB view details)

Uploaded CPython 3.9Windows x86-64

licketysplit-0.1.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (205.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

licketysplit-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl (209.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: licketysplit-0.1.7.tar.gz
  • Upload date:
  • Size: 26.9 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.7.tar.gz
Algorithm Hash digest
SHA256 9c4daa5aa05db90aad546110398c26d1d918cc88e722ce15546970f6a1989799
MD5 fc71364d81d8fe9df52793944b748f1d
BLAKE2b-256 57e8d3f20e2fbc1893777686d85638e58e36bab8b175392de258808dc941f284

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7.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.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c02982117a9fddcd2930bc254415eef17ea635e5712f4b5bc9928a2d6a93ff59
MD5 1a2d7d6207b6ed50a723b6fcd7761759
BLAKE2b-256 b97ae19913ad2f2a1eb0b5b3c6f33de7189f25c6b053cbd06b7e4161312befea

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71a5e32f60fee1a26ad1d2ab1835fbd2f3b2da9b9681cbfb0bae6411567314cd
MD5 0df909b59da0ca80690ef2b167ac3ef4
BLAKE2b-256 939804083a1e4af16ea9ae35bc2d88c6c59448752eaf558ff8968539a670cdd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3191012d58f6c81c75a326cd7b47691b27c3aa9a18b8dbd3aebeeef8e9f3f391
MD5 385a4c24b5e8a3ba3ae134e6d2f04b5b
BLAKE2b-256 dc3f42a157d45dff72e7bb89556d4abec3fa4177b7f6c9dacaabdd4edb688a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2cf02a2eb90d91633f34f0083bdf3e41708adc1a0a79c893c80cf4e14bb9e6f2
MD5 a1b1b3e09166a9742dbfb4c91c2ab465
BLAKE2b-256 71ad9c73a65b8208110cd80e645a822111008ee00b4ab3440ac8540c853f180f

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 adfeffb1de116b442164455e3ee0fd75de9bb92be632c2f29680b38e6f4cd5e5
MD5 24ab254db8cc90d74b44a449cdee49df
BLAKE2b-256 f664ccfb67ffbde08656c2ce429df8a3a65f0af026dc27f8a6559d86e3f604e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9fbe6eaf999540152cee44d4d8575cf97a9947a8989c1f1e7ba071ef9015070
MD5 0c66bedd1950aff3db704bb0fb4b45a5
BLAKE2b-256 b25b15a46665ee9c450d98ac65a24bbcba4e08dea931448f1bc7da9408473477

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cf8eabe05d4f0209636193addfc515e0a84e1316b4974c218290cc395d31620
MD5 c844502aef4accd619f8038a2d8ea50f
BLAKE2b-256 ca26b4b6cd98fd1d490fb438ae16d318db71aea44e5c7e171cd0f573e967c240

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6d321b1ef9dbd128207211c2e8ec661e21b60b99bbb979fbf36d471b07df9a7f
MD5 0ff76d5eb481dd9a9a02bfd1e1f12dcf
BLAKE2b-256 ef15eb4cf7931450c2e4a75fe6cded2990bc0a2faa5c289bdd78f2713f49693d

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f00656a8a2cf0749a5bbeafd48244e798b08244160c7f9df4d5f94959bee7054
MD5 c11065264fbf2f24b7103a7c5cbb1b7d
BLAKE2b-256 85caee70a0a8138f0661316fbe9e7fc84102d64002b196510f341491d000ee3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d2e30145a161c3c8e894429885575de04edc8bc3b9c48c1415c5cbf96d23b8e
MD5 1da2946b1711336fd63c1c8a418c568b
BLAKE2b-256 62e69e3f3dd3b49f7d851ee71ee7277bb4e18abc3d70ff413597131605f4646a

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6215d01abe60e78c4bde265a8628e5f61327bbbdf49bce1eb215d8ac3033ddac
MD5 10eec76665dced4164a1a9b30b08d4f3
BLAKE2b-256 a12f7b98319dc9d917def383739f21947216e3eabf51aa7f33024a2219c3d47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9754dc8c95b9e120c14ec929631b9c3270e763c7a21f3b474c38693698ad9bc
MD5 3314c789f72c47355832fbfa9252789d
BLAKE2b-256 a41b45b848b24d1ac39dd317a36b91872329df212bee404c540bbdcf0657a099

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ba3d9d3393f8b7eaca63be4694c2c74f86a5890fe46043ac72e27aef8f6021e
MD5 2e14d74bf440f45e4d373b05b03b2a84
BLAKE2b-256 a3f87835d55bccfc713fcb56298c56a291d2bdf6f4202f3e1994cac0eb3963fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 981fab78b0de7d7839c365d8a3ef662be21818029caa348cc49c81a08f81d4e7
MD5 fef1b2e2e00e570d9443fc5a74019fd3
BLAKE2b-256 0fde129b6465038ea655b153d42eca80d4320797a5c65646d6e48371de4ddc19

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4838d99130d2aaed92d7fa043a32f63925940afbf3601fb39cbad9c6667996d
MD5 c53524e583bcc5a4c1c78505c073995d
BLAKE2b-256 fde132bff16147e8a912f47e723a669aad67766f2a869926fa1d8cf46b127b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 393f83557702e6033630202715aa5bac1a68e4b15d967c35cda4342498cc0f94
MD5 090de72314549cfe546afd9709dd294e
BLAKE2b-256 cb582a0856e363f8c64d248cbce65ff6d39a2d62252103880b1713e19ad4bc6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: licketysplit-0.1.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 354.4 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c925b0ae0013fe269dc03666591b9c3b12573de1e7bc3a528dc5989523156a2b
MD5 73f1b4dcd3fe9908f2d76f32f386818f
BLAKE2b-256 d2d670b0390e6d7ba377bce37b76a39d266ab2117de04a9c0192bb78ebd3863f

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c1cb4788b623c66bd4ed4401a1fffbbee914a4a877e526bbe46c18ae5ecd621
MD5 2f8f91a9162278325ac183cd1bd2408b
BLAKE2b-256 b3c6131309d54eeb145b311ffb32ffff7510727a0b44fc93356c7bb0be793313

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 256dd58f5a95dfc2e7fc276a042676a2d9f17e9f93e62a865574ae61542b4540
MD5 7890a6f55252f44077e9cc65b8b30cd7
BLAKE2b-256 3b34b5283360ea6e68838d735c206466d3adbcfb286b7e78cda5a1a77278523e

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for licketysplit-0.1.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1816a0ff30a61de1954355ce48d7f046de64f25e7b93a655c85f2261e0038fd6
MD5 7bfe6e3e0b28a8f6bd097bd080870821
BLAKE2b-256 43cbcd3be9d0559a0184644731a95d3920b3d0ae0670fc5e58f996602eb7bdea

See more details on using hashes here.

Provenance

The following attestation bundles were made for licketysplit-0.1.7-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