Skip to main content

Highly comparative time-series analysis in Python.

Project description

pyhctsa logo

pyhctsa: Python Toolkit of Highly Comparative Time-Series Analysis Features

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

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.0a2.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.0a2-cp313-cp313-win_amd64.whl (13.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pyhctsa-0.1.0a2-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.0a2-cp313-cp313-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyhctsa-0.1.0a2-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.0a2-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.0a2-cp313-cp313-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pyhctsa-0.1.0a2-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.0a2-cp312-cp312-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyhctsa-0.1.0a2-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.0a2-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.0a2-cp312-cp312-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pyhctsa-0.1.0a2-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.0a2-cp311-cp311-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyhctsa-0.1.0a2-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.0a2-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.0a2-cp311-cp311-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pyhctsa-0.1.0a2-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.0a2-cp310-cp310-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyhctsa-0.1.0a2-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.0a2-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.0a2-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.0a2.tar.gz.

File metadata

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

File hashes

Hashes for pyhctsa-0.1.0a2.tar.gz
Algorithm Hash digest
SHA256 f0a989fe43cc7951166e95b693f03333b834efdb24fd3791e6c41f26ca583801
MD5 c62ed909acbc13232edd54147a36723f
BLAKE2b-256 8734c12d35fa63345caa84d0874873b1015af1c6382509401ac23ffc80e11fe6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.0a2-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.7

File hashes

Hashes for pyhctsa-0.1.0a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b93a07d4934ecb6650579c9a983f42b39857daffd39222d233f3f0d6402fc0d7
MD5 4ee8e6d28f0532ad9fd981ed07c939fc
BLAKE2b-256 42effb2c2850157dfe411a74d2629f932b01f44bdc4c96b452b862fa1aeeba13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10e892bf747f66208044f40460dc65e79f3f149007c67782a2707238efd1c62a
MD5 a4637815725eaa3b5c7698d1b1291566
BLAKE2b-256 a300f68159a35e98e472d6a5cb0b10c296c1abd392341a5fedd17c5070dccaf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7948246945713fbc8ea6baee9f79d67c6ccc70b29a153faab7879080f60e8975
MD5 f77df06ccb2a9a57a643a5c38fc3f1ed
BLAKE2b-256 fd6732cde283b9e5f4a49c5c0b9f53a01133836e188197db518c009f84416a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5b86eeb1665b5a9a10d6373f9d20d33439ceceb059c9f57f6a86156bf00e9be
MD5 da715e80d8d222bc0f9f1d23d6ea0795
BLAKE2b-256 0f8049288e51b9093c8adc780649e4cade9c2f67d3aec28ad7aa618dd9e7b731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9a3ae6821b5a32e59a0acf1b667ab551f30d858cc44d1dc9907a6f782cdcd4a
MD5 30f45952bfa4e2c9b0f6048857579af7
BLAKE2b-256 ec052af64cd674ccc204cb6bf9fae7000a7782343163584bf3ac09280560dc14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 179103b0ad0fc4a55269c488d4514d22fa868714d268f4b2114449719c3640a5
MD5 cca1a9a69271c5b28afa811d5e65d8e1
BLAKE2b-256 327e174e23acd563a1d4941fb29fa64bde7475c2b02be421bb927c948a9001e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.0a2-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.7

File hashes

Hashes for pyhctsa-0.1.0a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b49c7bd82ca418a8f3af17bda7d0b46ea0e9e24567bde15b40c558ee9fd1b1f1
MD5 d1f0c06c82dba662559b729c1c376462
BLAKE2b-256 852e21013a9602807448d0eb41acceab49be73157c824c4cc3c52d1cfb132e91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31647b30b7c6a6f8c09f6622482dc971ccfee710e2b1442c761f2a2af4d84206
MD5 b0f4dec012b88a3abb177a199f959bf4
BLAKE2b-256 a371c2b48f60a8c15cfa5582be9867af118cb2a7cd76bac71b0e21dda0a70715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fad1031da0d0a45647e828dedf089df6eff56f7d79730ab4f4c0e9aec63a86d8
MD5 c1807c14d5d70fc11da5f0b94dc14796
BLAKE2b-256 68639cf9e1b5abbd84a87d6e9ebcc1e79451197f6906667e3a3b60ee9bc0efc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65933c61574443d617796f85583ff46792d7958086e379d4ddb3343f7000d3d6
MD5 b880b29c0b687df8cc00f71d071333fc
BLAKE2b-256 5209a8f02b182c89ec94ae04f5df0223df8b34de7995a9100ee2cf2928f901eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84fd3e64e291c9452ef899a04c63af75e4daa8886c68ea3c24a384faf4c5d76f
MD5 6873031fc635f2e1cc02464e281b4bfa
BLAKE2b-256 225f91abdb13a87ce04f20bccb1a5ce1346101756d9cd8ac578637c71bfdcd3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d3727f1f92c8365b4831db778c34503da44eb7611b22bc3742a46353008aa41
MD5 591c3bb2d6d82fb6c6270f6ff275de3e
BLAKE2b-256 ac5167a744d09a91e869d5bfbf1f6e842882d5603a924baa4c410dc0b376d405

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.0a2-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.7

File hashes

Hashes for pyhctsa-0.1.0a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c84062766ee96ec4c8b1cc22ff2b3be0c92bd9c353f6d1031591bda24272a235
MD5 7fcabd476f440a75eba915fc55a76d75
BLAKE2b-256 764df355e4a11f3406695c5a176411b91648f3e00e4e7325f54568f7735a0cd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3bb3ae1c0651463fa564629ff2c9affdd0ac7136a05cb4f25058ca553aae88a
MD5 5fa4cb2accbc7fc7861ad7f295d37121
BLAKE2b-256 52226c6fad5d6f04b9f85c8dbe584eecd71f1c6599334e085cba8794dd761297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c759301b26a9b1bb68610ce32b6194a494b9c4fbf27151a39a5be17f0b8d09e
MD5 a2a0f172ebe30d9840b2cc0a32c0a6fd
BLAKE2b-256 67ce12e41a35412e4d692cc5696d190f1df55f0549b85447babd7895923ec734

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82f9318863a081d646e5bdc440f83b818191ea831249252786bffb57040832db
MD5 b4a6214a4596d7f148f1966abc1b0aec
BLAKE2b-256 a3f7da383041b46369431ced8cb1ab4ebc7b470a1fb384ba0f656604e828bc57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d38f34b34d8550b71368f508230ac8b5889ba99412fc71b03bb488241bf36031
MD5 aa81459eeec2376493a23fba18331f0e
BLAKE2b-256 14dfdce1f18dd72fc417e6c05877eba52ee262f307d0b39d0c7c239ed255cd9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae1e27f56a7a5ebc97dca50f541aacbbb0ac3b14660453224f7ef65dfa2ac20e
MD5 a2137fb2cf6566fbb2acdb32699c9289
BLAKE2b-256 1090864d4c4ce5d12bd2d3ce27e47ff41b4352686a18d21a24279d894ecafd12

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.0a2-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.7

File hashes

Hashes for pyhctsa-0.1.0a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d93a71119c8e77bf7858cb133297672a898b011b7c0a600efb20d6dbae562e13
MD5 3a33d3c3e831746ea5dc0af80c70ed97
BLAKE2b-256 51cd8b384d854194d324283ff2c54d1b88ce1b9f4c60f28e10fb866742463f93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a9c1e85c5bc593a830ca7baf140572b692889d0ed577d5ff7f12dccc603910c
MD5 45c3b03cab34bdd5bce575998ee521f8
BLAKE2b-256 b33d93bb75096dd0c06e63525847da156528856fac80ce6fd5251eb9c0249f80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb8be96ae0843c4999713da2f8fa4e051851fe1bf5383d886b8bc74103bc40fd
MD5 cb7d560c9c2d19bfba14f05df4179c2f
BLAKE2b-256 dd5d4ffa99d6da74b9ccd15a8e66eed4cd82bb0a9de00c549b789aad15ccf0ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 363a3478d1582a6738ba197dd0075e31f4a6c9a988902170a2263d7a0f0b79f8
MD5 b1da6613dfffacbf3da609fe089e004f
BLAKE2b-256 8e896656d3c997db215d15fb6c9fedd09e51910513fc40a9e57f049343e14fe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ed702cf4730f4b069a2358292dc4f4c880bbcbe0b14dadff5bbadc91a7c2c41
MD5 10c770d76c0a29851a27b4d21532b711
BLAKE2b-256 76e6a2751b1b4fb109dc3d7d5da5ec8b9a53352301c2b5a51fec59359a8fa19d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.0a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9327ffe10a7e5c0beda5285f5037f49fe3373ceaef75a1e53ba6c679941b8f6
MD5 00b8ba4b6c5ed02ee88ee46ee63c535b
BLAKE2b-256 c6944556e669a4f666a8f1414c23c3d34fd30f4e9dc30a5a1e7ed60626703eb4

See more details on using hashes here.

Provenance

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