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

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

Uploaded CPython 3.13Windows x86-64

pyhctsa-0.1.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyhctsa-0.1.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pyhctsa-0.1.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyhctsa-0.1.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

pyhctsa-0.1.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyhctsa-0.1.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (13.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pyhctsa-0.1.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (13.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyhctsa-0.1.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: pyhctsa-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 5c75e7ba3d5e588af66e88fa1bb200082a21fce78c6f7eed4ffeb485764abc0a
MD5 abfc5b8134bc56b2176032ee65742ba4
BLAKE2b-256 6f030ece165c35e896a1f73356b8f5f617ea90213fd1afbdc9658e9315738908

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 782d380b8df7514f01119d0878a13219645a1f712efe5133d79f17d48fc3139f
MD5 3b12f3895aef2d315960e161b5789dd0
BLAKE2b-256 bdc1570f044394aa6ca6fdb11c13b9fba3cde584194abb38d6fbfa0587019974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a03f89a009cc4124ebbd1e42d79d85abe5781ae2df6e71ebe55b2ba3a1eac5f6
MD5 d69c184ed0e8106430669ebeba452a17
BLAKE2b-256 dec01df37bbf69234718c81a98e8ad7ba0ebaf126c43bcdb10b1c3e0396dd5c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb9787ea2925b69a34199e448a3c59bf5e5397fd7c71ddd700488facc2d9e01e
MD5 3705b48cc11c9a878b7d455eafdfbda5
BLAKE2b-256 01c0d23dd15ef95c68c1cdd56bb346761bff08a544b443af998d463010efe459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 846ff8ec6f25cf5a5c44b65c051ab22d7839df52d38c6908cd8a98f6eccaab7b
MD5 7c01d72558392c29fba3bb6e2f2cf28a
BLAKE2b-256 8aeeaf0ed8e2caf9f94d9da3827425e8950acec5bf9c29bf98883d0494920426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f8df80c16fa640099335963806fe31c7052ddc4b33a2d209dca8a73149bafd1
MD5 e9717dc8a4fe88588415cf6a5c759fc7
BLAKE2b-256 22f61d5e49fbd89adaa124a7102f5ef888d7ed7e5e7d8268edd4a054607de26d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63fa8b60befd77ab5f3ce9c6fde19bf83b141266ed4689d5c30a7f4db2c372fd
MD5 6b96f15cbb30851ef6f8959b3a823539
BLAKE2b-256 b6767726f1f6bab909dbb929475c2de6ed7534fd10fe485e80d34a60da4bdadc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96896073c45412ee27bae514801bfe4b278e2070a9b9c13b1e574e4cf133a3df
MD5 19f89166a3c0a2df38eaf9b4243edc26
BLAKE2b-256 7fe19871b38550543699be4265da0db6dbcff5b83197776f97d35085b65399e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 240e8f91af246838c464a1719179fcb5e961ba49bf999dc9c5b833085ef49230
MD5 7230cbf69802ffb71bdc873eb4694168
BLAKE2b-256 44be84d63fb47a73f64f61360bc05fd57dfa0453e4fea3874ed33cccdf48d1aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e516304473c25c069bc68b36e32949feecc2df1be73991dde464a300f3a9a474
MD5 f7012a036330e228bc7604d07a9311e2
BLAKE2b-256 cc5ba188269caed881ac30080331582ec6a76f4389f14dd9e305b9f3ef88ecb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acfa4f031be75acba6a412febdb813e8860b1cda9d7ff1bb71e90c2f829220e2
MD5 b1921edf03fbdef8a4ac67ac8585bbb2
BLAKE2b-256 2a9169f276aae4c3ef4a9b862b9a7014bf0d1a180cd437709812fc3e1bd14089

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f49600a274e8d35874c73062128c681fd480da39ca4c67fd749362fdf9712b5b
MD5 765a96b95a63c186a0c1893c38363223
BLAKE2b-256 8d4528b32244281b197b59c78d88e48b7175d384eb4e7891366421eabb124e21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e7c8f6d476b863d16ac2ac9387008a6a60706827519dc75498540d620ec38a0
MD5 106360a9512eb00a384a3be48c1059ad
BLAKE2b-256 034a3dc7869dc7068e594dba352caa25a156285fdeaead29c4b7ec1f5c9d6ccb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cf75ab4199c30001c214e267fcb1e6e3c7a36bd074481b09819b5b45d8265243
MD5 5fdb8eed70b0a47bfcd3ca6b6b29336b
BLAKE2b-256 cd205b677f0c0d411d155c0f916ecdfa2fbfbd5585587ad212f6b29e5fddd359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a3b74c5cb9ab165c167f35bf11f298cb9b1a1db46d41e3fbead1f8eee05b1ee
MD5 5df8c00dac14469479115b938e1d5ad3
BLAKE2b-256 11b07e1a8f3cd8af74d7ac31a2d9ce21f362d56e3627802788665663f361343b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d1c4009bd8d56e2030c85f8f6af041f1809838b6ea5e1f8f0f399544fbe3be8
MD5 a615a39d7bb7ecd9a2b3302af08041bf
BLAKE2b-256 dc6c2461567bb477e45ba8f03fcf6d1762e5ae78ffe4ff8988d4f7a76d59ecf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc4b9962a37dff32826a0aed426a72006dce8fed641a6e04434c82e25c824bd4
MD5 bb57325dcc5d29f38341be2f3f15f036
BLAKE2b-256 0f974542aa989cd1b0e781d6df4c3921d56de73b32d9fa748c40d7612d9cc418

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4d7e3a5b9fe6b9baa01af652e76d02a0b91f69bf9f1a8e04322babd74e32638
MD5 02c0200c2ef494e51717aab541451f8e
BLAKE2b-256 d97246059a90c42c9ac229c16b3595761bf3248a80394ec803235add2ad172d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e4036f39ceb975cf1681de373aca472558915267ec5f2caafe0806207346d65
MD5 2b5117420114f079a8b2d8355eb040eb
BLAKE2b-256 de176983530218042f514d764a464743bb810fdf3c458e0bb2bffe0509442dba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyhctsa-0.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8381b3eb217de653ccdfb57cb9191bbd486e82f7a5ba7fa72867512008ced9fa
MD5 d4c5d2f1393e96e305fe277958695f92
BLAKE2b-256 1583b1ab9ae3525da494d87dcaad39e2def91825a7d15dc13fc2c696b05ff636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecd3c78c4ddcbcacdb2d3572ad31d85c7f3c2b7126aaf0fe620df770b61b84c9
MD5 4f685395d8e9c33ac8b56bea3e2fed60
BLAKE2b-256 76d91dabb1e8d37618c62428b083f61f233f059e39ad8713300a30e1d202dcfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11c1edc411cddff2737e52064e253105dbd304200fc13dfb703b4907b6c6f0b0
MD5 903ceda8a158f95de2050e563a60f6c6
BLAKE2b-256 89c5628ca0ea56ad0644bd628b473062d93f9c1f1742ce717a1421b1c4bd0375

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5057f8990a25c4154b102a5bb02cac074cb8f1de279d70d58ffd086bddc8c2a4
MD5 10c9d5f11dde9d53d4123ff1383aff54
BLAKE2b-256 dab8a4040e1ce17c2f502dff0d7005eecacae4c683a8681c32cc12e5444037bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33d895329abe7447de780a5af051502cd90ef46b5826c868c92ff6f9da3b8ad6
MD5 1ed21d5265da48b5bb0705a55534297e
BLAKE2b-256 bfaea153878955ee480e7773a6d4933588d3f6efd8a51a9e1cb01a9619866110

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyhctsa-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b97b065b007de1ac1b872780bdb4b24a1e4461dd4a14553fe73f1cf5dd492fc
MD5 cfcd98084e08648159c5da97e2db7d49
BLAKE2b-256 4edd50f97454c59dfeecfcedb4b7003368d757547bca894ffecf1c19a0a8ec5c

See more details on using hashes here.

Provenance

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