Skip to main content

Highly comparative time-series analysis in Python.

Project description

pyhctsa logo

pyhctsa: Python Toolkit for Highly Comparative Time-Series Analysis

pyhctsa

⬇️ Installation

To install pyhctsa you can call:

pip install pyhctsa

✨ Basic Usage

A FeatureCalculator object must first be instantiated using:

from pyhctsa.calculator import FeatureCalculator
calc = FeatureCalculator()

By default, the FeatureCalculator will initialize the full feature set. If you would like to specify a custom feature set, you can pass the corresponding configuration .YAML file as an argument to the FeatureCalculator:

custom_calc = FeatureCalculator(config_path="subset.yaml")

The number of master operations (callable functions) specified by the .yaml will be displayed for verification e.g., Loaded 700 master operations.

Once a FeatureCalculator has been initialized, you can call the extract method to compute time series features on either a single time-series instance or a list of multiple instances:

from pyhctsa.utils import get_dataset

e1000 = get_dataset()
data = e1000[0] # your data as a list, array, or pandas series
res = calc.extract(data)

Note that each time-series instances does not have to be the same length to compute a vector of features. The results of the extraction will be returned in a pandas dataframe of shape $N \times F$, where $N$ is the number of time-series instances and $F$ is the number of time-series features.

📘 Tutorials

New to pyhctsa? Step-by-step tutorials and example workflows are available in the repository 👉 /tutorials

🤖 Advanced Usage

Calling individual operations

If you would like to run individual operations on your data, you can access the corresponding functions from their respective modules directly. For example, to compute the raw_hrv_meas features on your data, the raw_hrv_meas master operation can be accessed from the medical module:

from pyhctsa.operations.medical import raw_hrv_meas

data = ... # your ArrayLike data
res = raw_hrv_meas(data) # result as either a dictionary or scalar value

Note that individual operations can only be called directly on individual time-series instances.

🏗️ Parallel Computing

Time-series feature extraction is computationally intensive. To speed up processing, pyhctsa allows you to distribute the workload across multiple CPU cores on your local machine using the LocalDistributor:

from pyhctsa.distribute import LocalDistributor
from pyhctsa.calculator import FeatureCalculator

# initialize the calculator
calc = FeatureCalculator()

# create a LocalDistributor and specify the number of workers
# it is generally recommended to set n_workers to the number of physical CPU cores
dist = LocalDistributor(n_workers=4)

# pass the distributor to the .extract() method
res = calc.extract(data, distributor=dist)

🔑 Licenses

Internal licenses

Code for computing features from time-series data is licensed as GNU General Public License version 3.

External packages and dependencies

While the majority of features in pyhctsa rely on standard Python libraries, a small subset of features require external toolboxes.

The following external time-series analysis code packages are provided with the software (in the toolboxes directory), and are used by our main feature-extraction calculator to compute meaningful structural features from time series:

The following codebases have been adapted directly into Python code within pyhctsa, rather than being included as external toolboxes:

  • Danny Kaplan's Code for embedding statistics (GPL license).
  • Histogram code by Rudy Moddemeijer (unlicensed).

AI Usage Disclosure

Portions of this codebase (including tests and function documentation) were refactored and generated with the assistance of Large Language Models (LLMs). All AI-generated contributions have been reviewed and verified by the human maintainers.

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

pyhctsa-1.0.0.tar.gz (12.5 MB view details)

Uploaded Source

Built Distributions

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

pyhctsa-1.0.0-cp313-cp313-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyhctsa-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyhctsa-1.0.0-cp312-cp312-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyhctsa-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyhctsa-1.0.0-cp311-cp311-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyhctsa-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyhctsa-1.0.0-cp310-cp310-win_amd64.whl (13.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyhctsa-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file pyhctsa-1.0.0.tar.gz.

File metadata

  • Download URL: pyhctsa-1.0.0.tar.gz
  • Upload date:
  • Size: 12.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyhctsa-1.0.0.tar.gz
Algorithm Hash digest
SHA256 875b1b5dd06f44028e0c28616473bbbc9e0960de5598341f7ddf66e26be98736
MD5 d426e197435769adf8fd0ab134ae07a1
BLAKE2b-256 e72c9fdca59aa0ce74e439d12d85daccd41801fc5ab6b0f15f6f630e52aed598

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0.tar.gz:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyhctsa-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyhctsa-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d345e899dfeeacb5390f06a089ec69a469a1e68f485bb642645217111c1ac75e
MD5 1f34f7e21be4feebb670cf558a3394da
BLAKE2b-256 d7cb021d83317b7752b9774eb7eadfffe45e7d3683e0c6fd627612c02b59f611

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9bee7664e88c48064d7b545f19bd46c0301c4fc3f06902be94d7775159ae192
MD5 3f4ff59bf0e4c69779f3e24f91360e3c
BLAKE2b-256 f33695dd45560927167cd3463ef83193ed98f0df2c4f3c0f636d81b3c015b7c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27e65f53eb9a2c4f4f1d1024cef1b7fd8e7c2035c02dd2f66d849fa2156e579f
MD5 4f3a6c4f20cc300ae1c6de4a395715be
BLAKE2b-256 d6660a0ecd709c8545f4a8d9736a7ed9015b7e6a135d8b93d4cb067b7a1fc48c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcc7bf26b88c58e411b83c97d90f68d2598082afea160eac7820dfc6c131f50e
MD5 d616b7efcfb4c6004ef8018f79b2b55a
BLAKE2b-256 cbbc1cc99a6d103cd32394f2c3b0368e55468f60c7f7f1a6c2220fdf264c62b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23d47f2b9c637d3e319c2f53d08f025b1bfca5f9f93529d58b8e7d3ec72c8ea3
MD5 04687d4b3862bc867ed086301e2e5323
BLAKE2b-256 af9b16b8ae3de2da8d101762463abd18c118836cfb069d810abf87dbc8a13587

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef21522e96e1fb4200ea7d5aaed77a6ec77f9d9fccb2efb9c5735e8f1b827c23
MD5 6f76f577f32ed5cda6a481832f7f5e1d
BLAKE2b-256 b5edf278fea41edb931bfcd324948c940b0ca5795d014a7121529086c2f3dd24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyhctsa-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyhctsa-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9690e082fbf088194317f3a3926e54dd1cf5a8e9357ba8c0791f5acb045b1ea9
MD5 86dfda7f5c88b5a303a1ca5ad15c7144
BLAKE2b-256 ea4b58737c92fa05f83c149c06c54d28f704807d97fe29f0d46b78885ef6054b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cf71d0db871481dececcd23fecaec329f8eff7ec500dae90febcce7fe9400c3
MD5 bc59f846898495bb3d99c6b5dd6b6c82
BLAKE2b-256 9c12a30d0f6f7c22fc0d3dc45aac7fef2634a7d77b5cf8846c7cf9dc4c33b586

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a709b2045b1ad0fb7bcb4ed15ca1c49878a9c77f9a5f8f50e3d76f874114d1a7
MD5 8f3de890ae958db12b4886c23baf16c3
BLAKE2b-256 f16b09ac7702109a5c5552bef0eca2075cfd86649e76a986a12d928bda7c481f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eda627596e6fb3e71f1e3191e387ee88e0cc45524d98195c2a4fe4ca995c4308
MD5 b7ee438b58f79b0346f7ce88de77d546
BLAKE2b-256 a260478ff4389db40fe860def60c9b731a9595673d78ff29aab9f1ec5bbd7a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11dbaeea0230fa862502aaf3c9b62177fea3ae873584a9e5ecbd389df09c038f
MD5 9e176904e193c5a5edfc22379e8c4c65
BLAKE2b-256 d43a31f09746f0f49a098c3691128d82df8f5d15a7092d86d085db6483e96626

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65b4bf22a2afc38c0d77ade111e9ae3c36cf423eb65e3c34c822c2e8ecaa192b
MD5 f34cceb5828e4bde670dc18784d24496
BLAKE2b-256 7b81515f057f482c51691b1c1bd91b92942292aa5cf92a2d81509a467c2e8975

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyhctsa-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyhctsa-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 87395bbe02c67ed626485da5024d5f58b839267fa4fbddc3996374ea44a2ae83
MD5 db4c9967d717548b24e621f78ccffe6a
BLAKE2b-256 22e629668141d392f219230fd01d2766464872acff1db8dad2ee5b5d2d59a40d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 893c89a02591f8117b1eb162f446e2c6dfb21622128dffe0d2cc225946d04a58
MD5 bf4041cf1118db70628f5ec74793312d
BLAKE2b-256 1ac93dbd2af266383f3851e5063a0ff18ccbd4919b1673dbc29d776d534ebb2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b30abcbdde8cf3d1542e28d6bfb6c61c7f96915901aa2fab8d62c611f9af10b
MD5 4617aca39df4d1dd31499c52aff4f4c3
BLAKE2b-256 f80fffcbae4c199e8273a9644af44742b41b3ab1843340a313a4e7968aa644e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 890f93e389ac7397fdccf266f575b55c12c3420d4fcdb60bbab8fe13035626b2
MD5 c8f3beb64faf5fad0d0809c033a7bc6a
BLAKE2b-256 5518b8c25afd759bd2403ab4b1c35389bb5f3810cff1cdf5e08876625063c05b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a397950ea096ac801b333edbb707eb80860fbdada430c32d80335db4ef7c407b
MD5 e427c903425a86f2b5a3368c04372162
BLAKE2b-256 587b6817d2afbd36a6f4f54bff3cdb0ec8575c6cb49fcfff7d68522450f710dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9c72ba41e9a95066a1836ca2312ab95f07adeeec1a730978e0496f7f996d600
MD5 ba7f1d227fcd45330635e20b6e22326f
BLAKE2b-256 c91e4b10a0ba7d3be5b9d5489d57323fb7e3abe408f6895374b4c6f54902828d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyhctsa-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyhctsa-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0aca7459586fa010f11d8f8a1230d6acdfd0870c0d2963064d7e1949fce83d5
MD5 bab637d4e0308ff4d0fd6d646326e82e
BLAKE2b-256 9536cf2e8bb3f926b8bf9e3c3ef95b594bb78bc30f6b5c444cd77bcfac14dd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d92a479a0e06f9651248328df29e6e131adc9b18ff8142f5d9f71aa3efd6d394
MD5 b30b6b2952afa070f81b7c95d35b6c91
BLAKE2b-256 fcb759592276ef06487db34c2af1dab2e0f98899b6463618bef3ebf83f6f0616

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a64d0ec4a06fe6706d677f7c69497a5f9983a906cd21b4dd8022731cc69b2655
MD5 5e062b761ae1756ffc8f6bd738b4f0a3
BLAKE2b-256 02b743c65c5bfcdc7c480ac9a1fdfb8655cab177af7c1fe4ddafb4433358c7ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50721738a4c23d491a22fdebc2951985778ce7eff06b38828faaac93594b6d16
MD5 dfc30128251f708454a3a63dd2ab4135
BLAKE2b-256 7efea6112ba3120a38c0cf559e036d8bf5c22213cd1c410709f445b78dd917d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3ec66d43086c5b477609474e7d339f38163e10b8f5b030bd831441ceab4888f
MD5 bcc8ee0d18211a64d2bc2560bc469610
BLAKE2b-256 56c29c0b42897a63f2111a0857d6f470dc5ec77ce51d76bbca469ddc912b20f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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

File details

Details for the file pyhctsa-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyhctsa-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c1b1955cdffba51f60a520e912a6c35e0353a91399650763f820590959ddffc
MD5 42b4c0dac7fa5264ae87208fe3727e45
BLAKE2b-256 f78473ce96a3c6384f91e311636f718c2b67378b30cf7d6666b7432d71aebe7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on DynamicsAndNeuralSystems/pyhctsa

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