Skip to main content

A Python package for fitting Ross Quinlan's Cubist regression model.

Project description

Cubist

PyPI Version GitHub Build codecov License PyPI - Python Version PyPI - Downloads pre-commit

cubist is a Python package and wrapper for Ross Quinlan's Cubist v2.07 regression model with additional utilities for visualizing the model. The package is both inspired by and a translation of the R wrapper for Cubist. This implementation of the model is compatible with and the visualization utilities are designed after those in scikit-learn.

Table of Contents generated with DocToc

Installation

Model-Only

pip install --upgrade cubist

or for those in the know:

uv add cubist

Enable Visualization Utilities

pip install cubist[viz]

or

uv add cubist --extra viz

Usage

>>> from sklearn.datasets import load_iris
>>> from sklearn.model_selection import train_test_split
>>> from cubist import Cubist
>>> X, y = load_iris(return_X_y=True, as_frame=True)
>>> X_train, X_test, y_train, y_test = train_test_split(
        X, y, test_size=0.05
    )
>>> X_train, X_test, y_train, y_test = train_test_split(
        X, y, test_size=0.05
    )
>>> model = Cubist()
>>> model.fit(X_train, y_train)

Cubist [Release 2.07 GPL Edition]  Sat Dec 28 19:52:49 2024
---------------------------------

    Target attribute `outcome'

Read 142 cases (5 attributes)

Model:

  Rule 1: [48 cases, mean 0.0, range 0 to 0, est err 0.0]

    if
        petal width (cm) <= 0.6
    then
        outcome = 0

  Rule 2: [94 cases, mean 1.5, range 1 to 2, est err 0.2]

    if
        petal width (cm) > 0.6
    then
        outcome = 0.2 + 0.76 petal width (cm) + 0.271 petal length (cm)
                  - 0.45 sepal width (cm)


Evaluation on training data (142 cases):

    Average  |error|                0.1
    Relative |error|               0.16
    Correlation coefficient        0.98


        Attribute usage:
          Conds  Model

          100%    66%    petal width (cm)
                  66%    sepal width (cm)
                  66%    petal length (cm)


Time: 0.0 secs

Cubist(n_rules=2, verbose=True)
>>> model.predict(X_test)
array([1.1257    , 0.        , 2.04999995, 1.25449991, 1.30480003,
       0.        , 0.94999999, 1.93509996])
>>> model.score(X_test, y_test)
0.9543285583162371

Cubist Model Features

The Cubist model has the following distinguishing features, although not all are fully enabled in this package:

  • Generates a piecewise model formulated as a collection of conditional rules with corresponding linear regressors (optionally allowing for nearest-neighbor correction).
  • High interpretability due to piecewise rules and linear regressors.
  • Handles missing values.
  • Handles continuous, date, time, timestamp, and discrete values. Additionally can ignore columns and add labels to training rows. Columns can also be defined by formulas. N.B. Not all of these are supported in this package.
  • Natively performs cross-validation and sampling.
  • Error can be further reduced by using multiple models (committees).
  • Allows for extrapolation beyond the original training target values (sets a minimum of zero for predicted output if all training target values are greater than zero).

Package Contents

  • Cubist model exposed as a scikit-learn estimator.
  • Visualization utilities for:
    • Exploring the coefficients of the linear regressors.
    • Assessing the coverage of rules over an input dataset.

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

cubist-1.2.1.tar.gz (200.5 kB view details)

Uploaded Source

Built Distributions

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

cubist-1.2.1-cp314-cp314t-win_amd64.whl (334.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

cubist-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (616.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cubist-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (624.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cubist-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl (330.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cubist-1.2.1-cp314-cp314-win_amd64.whl (330.8 kB view details)

Uploaded CPython 3.14Windows x86-64

cubist-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (583.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cubist-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (592.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cubist-1.2.1-cp314-cp314-macosx_11_0_arm64.whl (328.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cubist-1.2.1-cp313-cp313-win_amd64.whl (326.5 kB view details)

Uploaded CPython 3.13Windows x86-64

cubist-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (584.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cubist-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (593.4 kB view details)

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

cubist-1.2.1-cp313-cp313-macosx_11_0_arm64.whl (326.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cubist-1.2.1-cp312-cp312-win_amd64.whl (326.5 kB view details)

Uploaded CPython 3.12Windows x86-64

cubist-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (584.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cubist-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (594.0 kB view details)

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

cubist-1.2.1-cp312-cp312-macosx_11_0_arm64.whl (326.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cubist-1.2.1-cp311-cp311-win_amd64.whl (326.1 kB view details)

Uploaded CPython 3.11Windows x86-64

cubist-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (580.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cubist-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (589.2 kB view details)

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

cubist-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (326.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cubist-1.2.1-cp310-cp310-win_amd64.whl (326.0 kB view details)

Uploaded CPython 3.10Windows x86-64

cubist-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (573.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cubist-1.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (580.9 kB view details)

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

cubist-1.2.1-cp310-cp310-macosx_11_0_arm64.whl (327.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file cubist-1.2.1.tar.gz.

File metadata

  • Download URL: cubist-1.2.1.tar.gz
  • Upload date:
  • Size: 200.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cubist-1.2.1.tar.gz
Algorithm Hash digest
SHA256 191692ad36a05d109239ca59a34a34e561bb6e5f7a70816a751ffa412c158859
MD5 4fa0967b9b8ef040e47009d196d0c8b7
BLAKE2b-256 d74568ded8b875f7b21aa9d56157d0a6827643bd7785ea0613b00c394d8c3766

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1.tar.gz:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: cubist-1.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 334.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cubist-1.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7f2db593bc9cf1868951261c98c400e38aae57a5523c1254b566d7d656a6b31a
MD5 0d2365671ab38bc4cd72c4ad32f887df
BLAKE2b-256 9f6907af39950bccc0f34c8fc7804ab02c4cc4619b3e6fff757457626a7a4552

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 792dc9998f9e72eef55eff9d8b229ca10ceaebe454fec1bc3486a5c895ae3cb4
MD5 1f4a03c16fd3aeaa841cb451567bfc07
BLAKE2b-256 0d3396f76430fa4f478df73837e9551ab0765ed18431ee14f5df19ab73f67837

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10f2f65f2962d2ea117e9aa67626070355c78ab90089b3c2b925423d16cddc53
MD5 37863f27bc759d039023746c45ef03e8
BLAKE2b-256 92e1e69c36cb94789e6237498aaeecde34f803a323574077f6be36073217d3da

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b277c59da5c404073605a1cec08693d4569790cf9345e6ea11e60b5f0b5e73f5
MD5 733cb5bf0d7e69396080d10c1853d475
BLAKE2b-256 870c03c566c6c69000d80dd533a66ea1be0505078a878b65d4211cdaf5d2fece

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cubist-1.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 330.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cubist-1.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d61dc4b70aa2d7fc65e605d4aa4b0215aa08337db7893bf0d268b587a9ad8f11
MD5 76fd726db2f60f7c5c07c5cc94a7421f
BLAKE2b-256 b66e4c1ca3bc269a34cee265edb5a6a0654fe93770bd74de7d100b049b2ce60f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7781dc42824bd425778d54c13d6e9d3cbade0efcf31693897fa5f723e2caf2bf
MD5 06be81af329accd2e869f6ba95ffa498
BLAKE2b-256 9145e3e16ecf3b8d72dcc00e7674f8fdd77f600d3d841f4c5b0347de8737deb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f01ae49d41350629f70d3fa320d961c28196b10e8c57e692da47814c0c0af8a
MD5 0b4a7970d3b4a8c6b0f287ae5720fedc
BLAKE2b-256 c72d1d7326a36539dd323ceef6025ccee3e3f797dbc371805cb0565725c1f8b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9765ffbd586a4a03d600131c23982c6ab2e6557cc9f7d1fac18e1a2e284568bc
MD5 935baa38bf19fec0553ab22ff9e56dc4
BLAKE2b-256 9e9bcd977489c284951cd89fe80e68e185f0231b4d748bb43e81cbe460ff23a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cubist-1.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 326.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cubist-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08b75bbca555f504da4c1ae3ceec009ef71b7deced13d16ce107355cb5f1fb60
MD5 9b2dde12d456ad4c898fad6706e1da8f
BLAKE2b-256 c7a3384cd7fd97f10c1960ae2ba8ffd132c3f50d4f1e5577827c6b6ebdb2d71a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b4c07a44af21439b47fdd870e8f4a24d132d0074e4a503095247584af3b71ed
MD5 14dcdc8556cbcb8626421d68a242d51c
BLAKE2b-256 2d7ec00762550147a55404c0925928516aeec8983b770ecb643f3858e28954eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12d6d27a61ae16176fb420287f3527adde658c2ca6f240f0b3b29dadb95a405a
MD5 1ef73234b17ed5a239d21bdde4d6bf86
BLAKE2b-256 6cfc24adaac3def19aa36fa4aa137fad1ef9e7f7576e90f5a62af26f13d694e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4392cac2db009f79ee196bc6a41020058349a25677c5fb69642f99955675b1e
MD5 80d881fb8ba8a72da7a4755189014be7
BLAKE2b-256 cee652f1bfde8ab84d17618147d88345fbe60f1538d853b9fc66cef02881298c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cubist-1.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 326.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cubist-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72b0ce70775eacc3444a03a1ccbc26cfe5b49cbc384338cda4896d4fe8e68d8a
MD5 556831e31e7b4d9ee5851cf5399309b5
BLAKE2b-256 9b4d1271eef1d1705d20c796c9fb6e0aa04f8d6fa7c89ccada58c8af5d99e709

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf393db85656e3aca18add26902823ee9a28729479bd693bbc2512bb58209b10
MD5 5be71e5fe859fda89c49808a826078f9
BLAKE2b-256 045a0c79d708e40013d47f1f770ad1075e72a1f5d720bab9fc20f8dccf564f3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 779abf132deee3c83bbb68f23ae8180b8983feda871dae9d8564cab00c7828aa
MD5 4fda2f7b266044f079b35fa0bf7a2314
BLAKE2b-256 b2127263b7454906784977fab20f06c78aa6945eb173a86a95491e566c461476

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 198b2cc2e53008f2d10dbd61e607f8b0fc478c5bc0c9e51108fe3b22c2a40d2f
MD5 90cf951e0f51e72ae74f5d067a842628
BLAKE2b-256 df8911a901225e1f6de4c74ed058599113253ecd9f8dfdf440398aff4e0087fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cubist-1.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 326.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cubist-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ea7604d1437d2f81266393b8863d2b1ed3fa023934bc1dfca6a695b126b5e8c
MD5 5a214efd74b6a5eb67313fa77f43332b
BLAKE2b-256 fd0d79b3cd44e10669ba298b015c66943f1af8a740c7ec5de43038ffc8f0bf2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bde437d18c3d516cb87029492431599da01875631f218d18ad3bf2455d34a65
MD5 90ecd8d04a71d580aab46140be0e0c48
BLAKE2b-256 9a6dc72a36e6a9193c06f328fcb3aac8e9c233dc563e8d8ef3ec0dcd4597c85e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a602e01c09b4f1c448863f1718da6f749efaf7d595953677008f1532f5c64185
MD5 0992876c963f08d10cc43ad564695e9c
BLAKE2b-256 9cee1e257eadf98ceeb4bd1eb50fa53349ac3a07cc9bf3a2f4adca43c2906d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb4741970c24f5ff7bf553a2c611f6a1bf04e6e468b73f77990a565c437f85be
MD5 748d5ffa2d59983781c96d362233bcca
BLAKE2b-256 0275d24a2ba7bfe278f34c187d321a4d89c56d8b1e3e2766ea6684d930171327

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cubist-1.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 326.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cubist-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1bb6f90756fa4d2d6b0ad8f67a986d12db5f67fd8dc6018474996f0df4242284
MD5 50e152b5dcc98f9548f2a7f0a3a3de02
BLAKE2b-256 93a75394390b5b450001e9e4280b767987b42e65cfdc7a62f97db0568419f72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e4769c614009179010d684b753650f66d743b4d25cbe622c958e9da6b07024a
MD5 c137298bb024211fa0dffd06fbfe11c5
BLAKE2b-256 615ea4610b7eb833b30c00c4c683f55bbd36d8bdef7152d3b33e53c02aa6ace4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 251bc9359e7fd455fbe129e1edc67732fd3768b08f39f56d9303189243ce4b1a
MD5 9dc643d7c16cff335d65f97a879e3d03
BLAKE2b-256 6943eed761e33f29735e4a60a983ab72b701366992f4e39caa20667e99ab366e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on pjaselin/Cubist

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

File details

Details for the file cubist-1.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cubist-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca2d392d6e63d6ab8b0a50d24253f422cfaf02f6b7d7b49001d8a2f85a0d33dd
MD5 e1227527fb8fc8a47bf5832607a1c319
BLAKE2b-256 5778768c770a557ffa1ba78cd73bf5ba0c7305caa1cd7b54923108bb61c711eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cubist-1.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on pjaselin/Cubist

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