Skip to main content

A fast canonical-correlation-based search algorithm

Project description

conda Codecov CI Doc PythonVersion PyPi ruff pixi asv

fastcan is a search algorithm that supports:

  1. Feature selection

    • Supervised

    • Unsupervised

    • Multioutput

  2. Term selection for time series regressors (e.g., NARX models)

  3. Data pruning (i.e., sample selection)

Key advantages:

  1. Extremely fast – Designed for high performance, even with large datasets

  2. Redundancy-aware – Effectively handles feature or sample redundancy to select the most informative subset

  3. Multioutput – Natively supports matrix-valued targets for multioutput tasks

Check Home Page for more information.

Installation

Install fastcan via PyPi:

  • Run pip install fastcan

Or via conda-forge:

  • Run conda install -c conda-forge fastcan

Getting Started

>>> from fastcan import FastCan
>>> X = [[ 0.87, -1.34,  0.31 ],
...     [-2.79, -0.02, -0.85 ],
...     [-1.34, -0.48, -2.55 ],
...     [ 1.92,  1.48,  0.65 ]]
>>> # Multioutput feature selection
>>> y = [[0, 0], [1, 1], [0, 0], [1, 0]]
>>> selector = FastCan(
...     n_features_to_select=2, verbose=0
... ).fit(X, y)
>>> selector.get_support()
array([ True,  True, False])
>>> # Sorted indices
>>> selector.get_support(indices=True)
array([0, 1])
>>> # Indices in selection order
>>> selector.indices_
array([1, 0], dtype=int32)
>>> # Scores for selected features in selection order
>>> selector.scores_
array([0.91162413, 0.71089547])
>>> # Here Feature 2 must be included
>>> selector = FastCan(
...     n_features_to_select=2, indices_include=[2], verbose=0
... ).fit(X, y)
>>> # The feature which is useful when working with Feature 2
>>> selector.indices_
array([2, 0], dtype=int32)
>>> selector.scores_
array([0.34617598, 0.95815008])

NARX Time Series Modelling

fastcan can be used for system identification. In particular, we provide a submodule fastcan.narx to build Nonlinear AutoRegressive eXogenous (NARX) models. For more information, check this NARX model example.

Support Free-Threaded Wheels

fastcan has support for free-threaded (also known as nogil) CPython 3.13. For more information about free-threaded CPython, check how to install a free-threaded CPython.

Support WASM Wheels

fastcan is compiled to WebAssembly (WASM) wheels using pyodide. You can try it in a REPL directly in a browser, without installation. However, the version of fastcan may be delayed in pyodide. If the latest fastcan WASM wheels are required, you can find them on the assets of GitHub releases, and the installation is required. The WASM wheels of fastcan can be installed by

>>> import micropip # doctest: +SKIP
>>> await micropip.install('URL of the wasm wheel (end with _wasm32.whl)') # doctest: +SKIP

📝 Note: Due to the Cross-Origin Resource Sharing (CORS) block in web browsers, you may need Allow CORS: Access-Control-Allow-Origin Chrome extension.

📝 Note: The nightly wasm wheel of fastcan’s dependency (i.e. scikit-learn) can be found in Scientific Python Nightly Wheels.

Citation

fastcan is a Python implementation of the following papers.

If you use the h-correlation method in your work please cite the following reference:

@article{ZHANG2022108419,
   title = {Orthogonal least squares based fast feature selection for linear classification},
   journal = {Pattern Recognition},
   volume = {123},
   pages = {108419},
   year = {2022},
   issn = {0031-3203},
   doi = {https://doi.org/10.1016/j.patcog.2021.108419},
   url = {https://www.sciencedirect.com/science/article/pii/S0031320321005951},
   author = {Sikai Zhang and Zi-Qiang Lang},
   keywords = {Feature selection, Orthogonal least squares, Canonical correlation analysis, Linear discriminant analysis, Multi-label, Multivariate time series, Feature interaction},
   }

If you use the eta-cosine method in your work please cite the following reference:

@article{ZHANG2025111895,
   title = {Canonical-correlation-based fast feature selection for structural health monitoring},
   journal = {Mechanical Systems and Signal Processing},
   volume = {223},
   pages = {111895},
   year = {2025},
   issn = {0888-3270},
   doi = {https://doi.org/10.1016/j.ymssp.2024.111895},
   url = {https://www.sciencedirect.com/science/article/pii/S0888327024007933},
   author = {Sikai Zhang and Tingna Wang and Keith Worden and Limin Sun and Elizabeth J. Cross},
   keywords = {Multivariate feature selection, Filter method, Canonical correlation analysis, Feature interaction, Feature redundancy, Structural health monitoring},
   }

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

fastcan-0.5.0.tar.gz (454.4 kB view details)

Uploaded Source

Built Distributions

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

fastcan-0.5.0-cp314-cp314t-win_amd64.whl (241.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastcan-0.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (369.1 kB view details)

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

fastcan-0.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (361.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl (218.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fastcan-0.5.0-cp314-cp314t-macosx_10_15_x86_64.whl (221.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fastcan-0.5.0-cp314-cp314-win_amd64.whl (209.5 kB view details)

Uploaded CPython 3.14Windows x86-64

fastcan-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (378.9 kB view details)

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

fastcan-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (370.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (205.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastcan-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl (210.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

fastcan-0.5.0-cp313-cp313t-win_amd64.whl (229.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

fastcan-0.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (368.9 kB view details)

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

fastcan-0.5.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (362.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl (217.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

fastcan-0.5.0-cp313-cp313t-macosx_10_13_x86_64.whl (220.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

fastcan-0.5.0-cp313-cp313-win_amd64.whl (205.2 kB view details)

Uploaded CPython 3.13Windows x86-64

fastcan-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (377.8 kB view details)

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

fastcan-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (368.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (204.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastcan-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl (209.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fastcan-0.5.0-cp312-cp312-win_amd64.whl (205.4 kB view details)

Uploaded CPython 3.12Windows x86-64

fastcan-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (379.2 kB view details)

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

fastcan-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (368.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (205.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastcan-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl (211.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fastcan-0.5.0-cp311-cp311-win_amd64.whl (207.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fastcan-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (384.3 kB view details)

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

fastcan-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (372.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (204.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastcan-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl (208.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fastcan-0.5.0-cp310-cp310-win_amd64.whl (207.4 kB view details)

Uploaded CPython 3.10Windows x86-64

fastcan-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (385.9 kB view details)

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

fastcan-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (374.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (204.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fastcan-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl (209.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fastcan-0.5.0-cp39-cp39-win_amd64.whl (222.2 kB view details)

Uploaded CPython 3.9Windows x86-64

fastcan-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (418.5 kB view details)

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

fastcan-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (396.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fastcan-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (221.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fastcan-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl (226.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file fastcan-0.5.0.tar.gz.

File metadata

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

File hashes

Hashes for fastcan-0.5.0.tar.gz
Algorithm Hash digest
SHA256 f096487acc9898c4a9af4906bffeb9fd2203a277a3e94c0fc586097cc0e769dd
MD5 fa5e753c69f56e49ea5d90e558c2d562
BLAKE2b-256 7214419405e855a397355c6238b06180b5f3ddaa2c31dabc83774d06cd30cb79

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0.tar.gz:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 241.5 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 fastcan-0.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d496f156b65afc4c54f8d20ac635bfbcd7160e0b07427e1ac50a5501dc291068
MD5 099f1173bc91203df3f0aa91d0209000
BLAKE2b-256 4904a63c23e64e98d5e18de1a234bfd355864d9ef886c54a1d9728771a10303b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314t-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff47d54497f46bd65b9b054cc36229cfd72fd33d1516fe7ce74419335a505be7
MD5 b06ab43826238f974b3a8f7883479b0f
BLAKE2b-256 b166993f7bf969da8da2637ccc3e64776467da3a3603613ec7c54f9a9bc44963

See more details on using hashes here.

Provenance

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

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb8413378a7392af87e891c72d3abd5837e7d7a4de3e2c67818d939a0e55a6db
MD5 5f06e6f71b7eda33e43897f98716b6ac
BLAKE2b-256 fc3b7eddce15b43608b0c666995572082b4268ee4f2e0e634ba9f5477236ae4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a77cb1988ff08799ed36d323307fdd7af4b49934f449119503a2b4ea2c909f47
MD5 c7bb65fdedbe9b9e52113e14159e8751
BLAKE2b-256 dc918709d5d57f8a3b74a01770aa4746e68b7d8db120e370a9285774031bd2ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6adaa5fdacb1d0234e767048cc5e5333ffb1cfd1976fc31a2ebc58bf9179d442
MD5 30398ed0b7ef2af58948db681195c8c8
BLAKE2b-256 cf319404f3bb6376e8218465b13aca84a79807aea240fab093b599928046c79d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 209.5 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 fastcan-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2e52fbd59ddfd3e6562d2e4875c203234d20d1371733283e5cea0cd41e725eb8
MD5 0747e125a7fdca995b9e8ba1a5e9f9b9
BLAKE2b-256 c577b2abef40521193ebbe66b8ebacddc2751f3a2ed92009929fa893d606a4c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4042b1359cd8e8c757c91c392582fa93033b13a54a0ef50dc2fab3bd0803cf84
MD5 5f60a5697dcde4364c7ebd6935e736ba
BLAKE2b-256 25c5acda6b2596803de7d91646ad519cc8788b4b5d8c22704e9fb7ca0d9edc3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94a789933b1c1d74d7fdf9a73d21b1d3adb2f09453c14d7df61aa3304a600b32
MD5 d0208c3962d062d93ea75aa1521858e1
BLAKE2b-256 eb913fb431f72e24d734ff34e1add578099312c30abb15a9fe9c84e443e805e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f790e955de808ab4ae374f7b3b20179e4de0927852232e1e12ec5eea734f233c
MD5 8e2ac865a4c7188ff56d039c3d404d48
BLAKE2b-256 216b4409944aedb7537f3b7679a42ae7044b7a82fb7add71cc1175eac1c15dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f48f2b35ac4bc624b87755395bb06e067c778426c4d41b7e755bc3bb19e51224
MD5 1c5d65fa9fc1e289a4b811c21619a10f
BLAKE2b-256 e9720c7c5e7fba8e70cad1777e3cc7513c63c0554e5b3a4d16c0fd3b992d09a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 229.9 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastcan-0.5.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5c61397d165438afd119326c32ff20e9677958bb5676cab564746abed387da76
MD5 f379850f3c0367ead2df47325c41739e
BLAKE2b-256 59debc1b142163871857b3175cc1a883babc9d7e2323cdd3fd5e83dfd8018215

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313t-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1038fb54729a91661b0d0c2f65ad11ffc368123ca79aae50bf053184c6dc4e92
MD5 0ca386781f2a104d7fae3dd2d4e92db4
BLAKE2b-256 51c1fc9f0765e41bd88c6bb1249bb5f6063a9b4cfbb7761167141134fefa13e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0465d40b4044908d43c181506c163d8688f4d3d343135bc0c64d31a5c1490e0
MD5 6638c76261ce2f4ddb7bd0c950d43747
BLAKE2b-256 76ed887f35b8a11b95d07cbb3a5d275c748fdb5f7a07b9504dff1848445d6aff

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf2daea5f29da93a5f210418630fb44c3521e7c96beada9a1b6bd033f81add7e
MD5 d96e83521d9e84ad5ac430a1fe11e73f
BLAKE2b-256 70a65f09815c257aa4c0c0146a7473d8ac8d1c8c16821178a6e69d1015efa9ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 23451ea2c8d7434424fa339ce6dc9eec49e29e57fd2b38d18bfd561d8332f185
MD5 f00d5c973437ac7699402c5ba6aee723
BLAKE2b-256 ba1cdea6bb8da469e278a72b475669945ae863f448f49e1f3f2a5f642eac0220

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 205.2 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 fastcan-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f8ef706964d1e1a815cc80a143f0dba7efbf0a2c9f49c1066de9520f054e50e0
MD5 075d206e5a27a43dd343b312b0ef9c79
BLAKE2b-256 8b1bc8a0e9d13169d9c92cd89dd757824a40e98132967b23c4247558ec22e71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0a31f9f23cffe04fcdd2685344c6c5415d6fc76fa391d14a993576cde70af87
MD5 27370908b149490d7c656b2846184675
BLAKE2b-256 45fe55f87bfa3e2e5d1fcdba2a46224caf480ce190ee6ff4877f67a85c5526bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f810451c811bc22ec4e622b2700379cbcdfa87472298f8c3d8c20c24990844b3
MD5 e087b1404256bd069ff281828f122c2b
BLAKE2b-256 9a9258702b17317997bf3bf0aceb7b65c000a613c3f66e030755197c814300ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 385bfffadbd6c4fee9de979cd4545f22079877e79d60cd26a48fc52b3c9f1566
MD5 6fb19633d1ece45899bfa1ca774f4894
BLAKE2b-256 7b22b842097e946f249a342db72990c022058e6f7679fb4d58e5926466c1c68b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 762d3ac45b51adc271bd339795fe5088c257911d281d53a74a1e85fe043b21fb
MD5 aea7a696cd1e504717b8ae99aff3ba2d
BLAKE2b-256 33b1100ad8f0c8c0ea2dc4ea1bb3f73d6c98ee462ade4c2eb6d179c306e296d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 205.4 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 fastcan-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75cc8a134fa09afb13df1b27fb40647f2a7e42a1ea40290a9d5d1f306784a915
MD5 18fb637a6327014456faab626c7bdf9f
BLAKE2b-256 32f96986b11fab19083c770ed8d645823f96306b7091daaeee992ecc7ae04b5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cc5b917c3e3c888d70d983bf5cd100b97bcedbb541e7bb45e4b9715d13472bd
MD5 0c78ff64a0f79a1115fbcfdfab43fca0
BLAKE2b-256 b9ac81cf0ffd756efac840dae12c810eaae0f7287545ece464c921229de2e288

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d177a77e943cd212ae1b1278d9a5477dc610c505609cfa4e893cdcb8db80b80f
MD5 c889102e2c584f1d5f0783886314e72a
BLAKE2b-256 7d8acf32411856d8db2852d9da226eb93fe7a77773d3984f49c5f7e0adb6a8d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 177098b88ba7be9b386bdff37ca57962c783e065f789835cdec7ae0a375e048a
MD5 831914574ccc5e2d7fa57ad655b7a386
BLAKE2b-256 882ff6f4a476d7e821ba329e407b660c2d1a5017031ab66edb1520c0f0f0053e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fa68794fe74a16ddcc5078ff79e0706215ba9abb1392477c5a23d21eb7f3cfeb
MD5 b2d1b39e0a2b7d2cefbed0dac80111b0
BLAKE2b-256 f8bcd4b8e59b6987995d9278d41bc907d9f29808d64d8636979fb93aec4334ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 207.3 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 fastcan-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e87a05e9e718545b00a6df048307024c6edac478d0c0929324a4129d2091afe1
MD5 89972727339a6f03f94d390c138a5919
BLAKE2b-256 6796a98bf16fb83534815ab080c53ffa6a38dab5a9675340e9059b8f29497d07

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c13a0b1b829eecea2bb3028ea00f10029bc23dc7260a3bf86828ce92885eb32c
MD5 60f72ca280e9e5dd161fbca328a52979
BLAKE2b-256 8952db2ce6683b38947195cd072394b939c033fe9bb86026afa4ee92d8000751

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35987dcdc65f67ca4ed571ed598cd83a199c51b7d068b1d66068b879891866ac
MD5 197427250f63cac4b93d857df3bfe098
BLAKE2b-256 0755c0d2c996831d5b32cf67f31dd324cb30e3eb4cbf8d79b6312eb4553be89d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7f477697a0db191bc44f60aa01d4d76d38c1827de38f29e55fdd54918c01984
MD5 b08d9fe2e5f19363236dc7d2c54fe75a
BLAKE2b-256 eafb73ca2b7f0d344e668e686760a67528b029b2109c4a59d97a49496593783b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5e788250ea9b1f6a1d96497e23f4992c4d32835e6a518ec313925d24628e2da
MD5 c781f5537d84edf9bdfd0f9a4feb8654
BLAKE2b-256 d4a6133c749874d3dfec65f464ac03696cfbd4705142f462cbadd59bd90fe7ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 207.4 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 fastcan-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3da3065581d49ecc3b37fda86d5242f490c645c0d78272cd6a3941f9c265087
MD5 c25666c86bbf9c54c8645ec03f8c4698
BLAKE2b-256 909531d12925d8a53e7c2793dc8c8c78499c8e9f7bb9901998fbef85b9ed37bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 507b662d5cb39c364733613cc4d6620fdbab3344f09fb418a53c4b992ded27ed
MD5 e1da5ddecb9e7a418cafca4bb08313b1
BLAKE2b-256 f05c6302f761eb17a5ca916cf42efef04ac1bdea5f3290fb004766de4fe86015

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7132345060399ab17b122c82202a696444f19e16315282835263c03793f7a351
MD5 83e262871c52bf3b48ad8e5bc29217fd
BLAKE2b-256 d8e653fdb97049bef6e8c38cfcd9b7ff0baadb5d87a9ec8d8d647447cbbb2d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f736621508fbed92810b024b7662e99b041c49d92bd4073d6b36a9fe52cfd49
MD5 0d95414616e28f1ef3f7a2c0f9307bae
BLAKE2b-256 7e45669a1c507849395c7cd16eb73b265d3d2d37ec0caf11657eb95f94ceb463

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9255110916e889997330d417e86e795829b527bbc95f1eb275c64ccc0bafba83
MD5 7ea33df6c51da9ed61d9c4b5329b56c7
BLAKE2b-256 012b490af80b8c8ae41a472f2b1fd5d4940311c4191ce7db755c499f62e3fd8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fastcan-0.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 222.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for fastcan-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fe2bbc62a314b50f46e67fb68037a2907c47bad82b226249cef883531b0635b1
MD5 9129917583588ed45f2915a6dce2be3e
BLAKE2b-256 7b763f30825829f1f102672bc0bc301e48bfd296c654667bd971e5304a03af16

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db733deb8231d57bac8c97b152a8297372633c5d7e133eaddced6d4dd0b807f2
MD5 4c77b0b8379c97cb7924b83737528720
BLAKE2b-256 3818437f6ec576b3807b88b1196c6a2844e59f4039d471224937258f8c4e89d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 652ab04774f76faa2ff972bc7674d785a4d6f9dc04f4ae7e269e194b84fb54dc
MD5 a96ff462c1d9768e0c06aec1380a0eeb
BLAKE2b-256 6d2d5d14be5875b9696be31443b64e879f34b7e87b3179fe4d98d447c847fc3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d816ff380477fe3dc25760ae157609f7b52529a7bb7d7a9edde78751b7d380f
MD5 b6c17db62e395144a206350fae032c6b
BLAKE2b-256 27acdf3c33f5e05708c9cbd907888c23b415b2300b537f84d0cf56e519551ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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

File details

Details for the file fastcan-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fastcan-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c76dcad966fb525fc5a0fc1e86c33267c119ae62f83041eaf1fd735fde6e0f5
MD5 90b0949c66a0e57011619b0c4d7b4f63
BLAKE2b-256 aa3f200333d62541c385f0d29278ceea34e15f6ab6ca691049811cd9f4dc0e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastcan-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish-pypi.yml on scikit-learn-contrib/fastcan

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