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.

You can also inspect the quality of the extracted feature values by calling calc.summary().

📘 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.distributed 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)

ℹ️ Note for Windows users

Some features require Java (JDK) to be installed. If you encounter a JVM not found error:

  1. Ensure Java Development Kit (JDK) is installed on your system

    • Download from Oracle or use OpenJDK
    • Minimum version required: JDK 11
  2. Before importing pyhctsa, set the JAVA_HOME environment variable using the location of the JDK installation on your system:

import os
os.environ['JAVA_HOME'] = "C:\Program Files\Java\jdk-11" # replace with relevant path
from pyhctsa.calculator import FeatureCalculator
# rest of your code...

🔑 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-0.1.2.tar.gz (13.1 MB view details)

Uploaded Source

Built Distributions

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

pyhctsa-0.1.2-cp313-cp313-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pyhctsa-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyhctsa-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyhctsa-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyhctsa-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyhctsa-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyhctsa-0.1.2-cp312-cp312-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pyhctsa-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyhctsa-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyhctsa-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyhctsa-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyhctsa-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyhctsa-0.1.2-cp311-cp311-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.11Windows x86-64

pyhctsa-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyhctsa-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyhctsa-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyhctsa-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyhctsa-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyhctsa-0.1.2-cp310-cp310-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.10Windows x86-64

pyhctsa-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyhctsa-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyhctsa-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyhctsa-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyhctsa-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pyhctsa-0.1.2.tar.gz
Algorithm Hash digest
SHA256 67fd3798ffc227fe22da2ea159bc141c2581025b3ab73a118ef663414633c6a4
MD5 2a4f07c897360fee1aa1fe284015cd9e
BLAKE2b-256 60a8d71003824038539c24f4a5044dfb471ab66a4cee0422f8fceecb347e8790

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 13.8 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-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6987bb20fdd07d781c901875b6928eeaf36a936b512321ad2930acd2930ca076
MD5 b32bd896fcc263fe3aefc77312313538
BLAKE2b-256 88084a208947d2a91fdf25d611ba428ce55434f61b3ac67556af261cc0cb72e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d3926e5658dbf8b7a4691e3381fda266e6dbb6f5d89ba84fda769c7ae7682d3
MD5 445398a31952e2eb57a2f9935d479eae
BLAKE2b-256 33b147700af3ccc98728a52ca99bc9d416a1c2cd73696b2c319dd8064df5b087

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70ca5f763c29dab95f62ffbd875f4cdfef3bd071b91b9e60192e875fbea60413
MD5 62832ac609f52c7ad5053c89719944cb
BLAKE2b-256 af4fcdbd091ce5d50228090e445cb5fa8d2cb57ea1957ff0473f07e50b47a429

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 931d6003fd4279e62a9e8fd98e09bb0808cb0149174d168324a7b8468b94a6f1
MD5 f6c4a15f061e63f745e70aed3f142be1
BLAKE2b-256 3cbf9fc8cb05a289563cbecda94b89551e0cf70d8715927d164eff27d05fb2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c23ae7f8b1e76b2a9a33e253406fd7dabb512a45008a5bfa1f57324ffc8a014c
MD5 a03cc8195d8fd85e16530f70c82d22d4
BLAKE2b-256 46d4cedef6a2261a8a3127e94ac5c833e5a57b6e5c26d4277113f885548356d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 518474e8d93c031bd6ea01e13a4ac84ad723b10688496fcf202037ea7da1a865
MD5 6c2310c132aefa6985d72e893006d79c
BLAKE2b-256 b94c144f7e2335a4c9be8f7803df922c94e9a1393efc7bb46b114609c7946465

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 13.8 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-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a6cf9b8ad5384e68d09db79c16f00ef49378a37eda9c64e27e4ad471a5a75a37
MD5 5f1ae26ed70b0154f0a94adecd7dd2c3
BLAKE2b-256 7eeb1984cce2fc5e1cd33644e01444aa103974a5571708cb2e0f4b30512fbecf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ed9b0663f4ea3004132b81ca257ba5843d8af4971810c83b95b95984c67ed21
MD5 303efe3babf387872c24fc1b8a437ce1
BLAKE2b-256 f75c548592cd0624981339f54f0a30f9c6e9da35244c3b4c6eeeddf4455b2fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb889357ff710b1c4f968723b73aff20c282bc5c1b35650e3859d7de61c17473
MD5 b1ca67146e9fd4425e9c472e50787140
BLAKE2b-256 fa433ce1e752c4df932ed2b266996176fc440c8a021a6f58508f82819e0a8b54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59700a7780b88f5ea56bb2e97f5b5c0c3e58e55b4ac1437a45c5263a89606ca7
MD5 452ef8e1418960b268c3e6a9c6097398
BLAKE2b-256 a6d585d48e8dc1311f8df9d7c6fbf570cf3597090afa918cb9c4ceae1e9685bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4047c57bf7a10a9d3387ed447ab9733ddb5e30405702086ad639aff25f2f52d2
MD5 36904037d6e6144733ddb05aa6eaa4fb
BLAKE2b-256 beee5d0832dfb770cd001ab566b13e51ea91eba53c65400c11bd8e35cff851c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc86f553543c6a9b712f1cf6648f66f5a03b3575e763f06c1e4ebea4f7aeb861
MD5 e5aed79bf4daecd5e4453e0a1fa52425
BLAKE2b-256 19cb9f0945ee59831e432c7b6dbc5ea2b97b910bfe01f6a9613a73e884188c69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 13.8 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-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dfc1d1a3bfa4c7beb08dcf841844d308d24fe3b299467ace10b0cb309ca569b1
MD5 3d2731b6e0ffc41be4d6684929aae5b0
BLAKE2b-256 922de45530a8862e2c49457d5ec3f49b1a10ef9d31506f410992ea69e40502e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20f1ccaed5b07fe7f5fa88b8664341329eeaa7dcf1860283cd771269cf9ce353
MD5 705d77cbf84fc35a346815c06436ca61
BLAKE2b-256 5dfcc7289f4f3d2b54b7099092efa17778506bfd99a77b728029d055450e4f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c82b619f540247086deeabb6d1c97760be6dc43aa0c854bfdcaa668bca9c37a0
MD5 5113ec071e56e6f5e8cd952f31768736
BLAKE2b-256 cadae3027317426b0a59b8c9f3ead92c8e1d635d98d4145bd9c2b148133d1aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2e4611c0d384b0c8b78d46e7841fa62717cc8d50679f34a411724fd2c8c4131
MD5 abfbefae27d32a5c330d78bd1b0dd29a
BLAKE2b-256 a929f2209466d32ec2c589b707d4a9a18c9bf5fd98496e1e7ceaffe8eabb43eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ae98c118d0e2a640c94412f9133513c27e7ba9f89d12f42b9a2c1e592b45afe
MD5 7bccaaadb9d2d6b45d6aad5eb1956983
BLAKE2b-256 c8eecc26a5ac0cb1ba36b13b6f9f342c390cbb432e2a6598c16577a0a46b71ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 763d1c49b63bc1a984e6854d77ff695e3618f7793b34a07ed0379e2ddd4f60c1
MD5 1b15fc0c562d45edb5d004b4214a507a
BLAKE2b-256 8d0ed4537d55fd460668b0f27fc2bf034380f49cad8e16ca7eff5137f85cc996

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 13.8 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-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b2bc231bfbdf522f0c5fe1a6ca8e12b617341de99e69d8fa941bfba97a7fbe9d
MD5 377e52975dbe4e42ace4d20e7ae9229c
BLAKE2b-256 8c41f6071d5996a5df79840a19e0f553b6f829ca13c66b6393a59329590f15e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a9fcc900d99bf1bdba5a240e9fedf581cf6eac66dff43b58ec3899a54b13759
MD5 b4195eaa1dc3cf263cbdef97bb5f7062
BLAKE2b-256 481f0836db9617186c4be9a336aa6e682956c66e0cf14b377cc0fca81cfc3099

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31f5fb1d0a27c58b3d3fabbc2359a29beb978b24e83f0748f80ebfac9b0dec5b
MD5 4ad43b11986bced696a05245e2e3ad06
BLAKE2b-256 edc6890e51a946495c197a52d0cb94faf39965fb3f399baa5c10480d2c64d7d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4938b90c6558d2b491b5015d39038dc380b585bb6fa266edc091759c0d9b4776
MD5 e161c6e2ba33d2421dd03dfe25cdef43
BLAKE2b-256 87d60731baa6ea617d17389de5c7004046c18153e2ab516c6f4dff24073fed14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f1e965b4e671b8632d70866847d462f28d16eb90dac30b5a1c9405338408e35
MD5 0648e9575df780268a0650eb3636ec58
BLAKE2b-256 0d2e395ada993a780bf6e0dbd846ca6119197d35c926109490c64ddfe800834d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88299eef06e1274ac14cff41b088d73b9cae2193ab633119664404d922b9b0bf
MD5 b0880bd1dd0a168672f2aff6374a42c2
BLAKE2b-256 a25b9388a54ea54af6b2ee234a3bf5f150af10a4f384cce8bd2a82966e246817

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyhctsa-0.1.2-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