Skip to main content

No project description provided

Project description

actfast Fast actigraphy data reader

actfast is a Python package for reading raw actigraphy data of various devices and manufacturers. It is designed to be fast, lightweight, memory efficient, and suitable for reading large datasets.

Supported formats & devices

The package currently supports the following formats:

Format Manufacturer Device Implementation status
GT3X Actigraph wGT3X-BT
BIN GENEActiv GENEActiv
CWA Axivity AX3, AX6
BIN Genea Genea
BIN Movisens Movisens
WAV Axivity Axivity Use general-purpose WAV audio file reader
AGD/SQLite Actigraph ActiGraph Use general-purpose SQLite reader
AWD Philips Actiwatch Use general-purpose CSV reader
MTN Philips Actiwatch Use general-purpose XML reader
CSV Any Any Use general-purpose CSV reader
XLS, XLSX, ODS Any Any Use general-purpose Excel reader

The scope of this package is limited to reading raw sensor data. It does not read CSV or other standard file formats commonly used by various manufacturers. Use general-purpose libraries to read these files.

The package is designed to be easily extensible to support new formats and devices. If you have a non-standard device format that is not supported yet, please open an issue and attach a sample file. We will do our best to add support for it.

Installation

Install from PyPI via:

pip install actfast

Or, install the latest development version from GitHub via:

pip install git+https://github.com/childmindresearch/actfast.git

Tested devices

This package has been extensively tested with data captured by the following devices:

Device Firmware
ActiGraph wGT3X-BT 1.9.2
GENEActiv 1.2 Ver06.17 15June23

Similar devices might work, but have not been tested. Please open an issue and attach a sample file if you encounter any issues.

Usage

The package provides a single function, read, which reads an actigraphy file and returns a dictionary:

import actfast

subject1 = actfast.read("data/subject1.gt3x")

The returned dictionary has the following structure:

{
    "format": "Actigraph GT3X",  # file format, any of "Actigraph GT3X", "Axivity CWA", "GeneActiv BIN", "Genea BIN", "Unknown WAV", "Unknown SQLite"
    "metadata": {
        # device specific key value pairs of metadata (e.g., device model, firmware version)
    },
    "timeseries": {
        # device specific key value pairs of "timeseries name" -> {timeseries data}, e.g.:
        "high_frequency": {
            "datetime": # 1D int64 numpy array of timestamps in nanoseconds (Unix epoch time)
            # other data fields are various device specific sensor data, e.g.:
            "acceleration": # 2D numpy array (n_samples x 3) of acceleration data (x, y, z)
            "light": # 1D numpy array of light data
            "temperature": # temperature data
            # ...
        },
        "low_frequency": {
            # similar structure as high_frequency
        }
    },

Architecture & usage considerations

All supported formats seem to be constructed as streams of variable-length, variable-content records. While this stream of records is easy to write for the manufacturers, it is not ideal for vectorized operations. actfast collects data in contiguous arrays.

Consider reading large datasets once and storing them in a more efficient format (e.g., Parquet, HDF5) for subsequent analysis. This will always speed up data reading and enable streaming data processing.

License

This package is licensed under the MIT License. See the LICENSE file for more information.

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

actfast-1.1.1.tar.gz (84.7 kB view details)

Uploaded Source

Built Distributions

actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (554.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (579.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (652.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (568.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (429.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (413.4 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (554.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (579.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (653.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (568.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (429.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (393.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (413.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (554.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (579.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (653.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (568.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (429.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (393.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

actfast-1.1.1-cp312-none-win_amd64.whl (247.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

actfast-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (552.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

actfast-1.1.1-cp312-cp312-musllinux_1_2_i686.whl (577.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

actfast-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (566.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

actfast-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

actfast-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

actfast-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (400.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

actfast-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (411.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

actfast-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (341.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

actfast-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl (351.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

actfast-1.1.1-cp311-none-win_amd64.whl (247.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

actfast-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (553.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

actfast-1.1.1-cp311-cp311-musllinux_1_2_i686.whl (578.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

actfast-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (651.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (566.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

actfast-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

actfast-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

actfast-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (426.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (401.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

actfast-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (412.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

actfast-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (342.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

actfast-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl (352.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

actfast-1.1.1-cp310-none-win_amd64.whl (247.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

actfast-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (553.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

actfast-1.1.1-cp310-cp310-musllinux_1_2_i686.whl (578.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

actfast-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (652.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (567.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

actfast-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

actfast-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

actfast-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (401.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

actfast-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (412.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

actfast-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (342.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

actfast-1.1.1-cp39-none-win_amd64.whl (248.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

actfast-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (553.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

actfast-1.1.1-cp39-cp39-musllinux_1_2_i686.whl (578.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

actfast-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (652.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (567.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

actfast-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

actfast-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

actfast-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (402.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

actfast-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (413.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

actfast-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (342.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

actfast-1.1.1-cp38-none-win_amd64.whl (248.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

actfast-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (553.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

actfast-1.1.1-cp38-cp38-musllinux_1_2_i686.whl (578.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

actfast-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (652.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

actfast-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (567.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

actfast-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (387.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

actfast-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

actfast-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

actfast-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (401.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

actfast-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

actfast-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (412.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file actfast-1.1.1.tar.gz.

File metadata

  • Download URL: actfast-1.1.1.tar.gz
  • Upload date:
  • Size: 84.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for actfast-1.1.1.tar.gz
Algorithm Hash digest
SHA256 d6222baab908099a7a0e085bee0c03314434b6926df3ae90cac58b23a775e591
MD5 ff33f27c2c5fc2d01d584af68005b72f
BLAKE2b-256 855974d4713ce4cd6c949e20f3292d26194a1c29b80dd9f2896ab53d2b09c162

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85b4817064f6e5c587e3b54538fb49de0f9e877e275c345a43ccdbbea83420fc
MD5 5e41814f76ba976171ecf53e01d9e7f6
BLAKE2b-256 6fe5c17ee5077c19942a76a218cf01bd663faca5b9c43c81a427d328de0d3d9e

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5b870cc199b00631de4b5efccf08bf93013af4df6efb20147a569cc8f52ecd4
MD5 8ba6fe942e6a9c2e03cdd2125c00ab0e
BLAKE2b-256 3ab1253a4f70d01af74f22046d7b353ff12017c9854518ec2520f36abcb63eda

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 743bf0eada1d0701ba30cd687cdcf922604cd9057084525d42a7e5628233b90f
MD5 d9b349137744751fa418e70031b89565
BLAKE2b-256 146ed68499b2e432f71bdb0f460583a7152962b9f343dc0b5ee15d6026475b5c

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 614c4ed4e51a000d706aa6c5488102f264a05c0421accb698061897c52b40aec
MD5 7ca0fa4d9b7d19fe373d0ce9161e215a
BLAKE2b-256 e61d41cbc58c0d5895b25d8422d9dc578ea6c7f3bd16a5330aeb7ebeef68c891

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 171a0fcee7de8a62a5e802cfb1a2d1034aed40f41749ff3bb9522fd13d4b1c75
MD5 f020b3ccfa8aa8eb4b832729073105f0
BLAKE2b-256 6b4fec78fef9a14320df6b724a792896074dda6f950e2b9de06d540f99cbca70

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4911667f893e21d0bcd0ee87e8b3f80ccc971c5426d15ebb7dae2c80484bed72
MD5 53ced8e132745412f1881c695b9609ab
BLAKE2b-256 7e3cc0e80e783238ef9a2d36dbec7bd46026d244efdb86e6045ba88dc2add887

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bd7316546fc2f8009510db13f19029c16b4a81499d7de002bf166bd6cee3779
MD5 21266fdd79101c90667c4f3378a34928
BLAKE2b-256 cb9d56d8677ec955006c280655902c0d695eca8e38494e0e059b28605c38c650

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d72f3a673dbf57d549388a5080a5c54621b710d63269cf61dae4bb46df80e09f
MD5 99762d1a63fb3b4ee108d487b1ce91bf
BLAKE2b-256 b7c88fad615a3a85f0a8a77a555f6113275e1d61d3b7222167b4ce77e8090bb8

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dcc2c0c9c47b00eea81825a407d264015c28e094edf749bebf462c951c620b8
MD5 f7c7a1efcc7b3026d4d286e43cba8425
BLAKE2b-256 251542cfe2f43e320014ec1b1635e234288c5af8922a9b2c04f86ea1db9f59d3

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eaa315db3b26e6e9061fa681d7df32e810f09309b8f03ddded155800c4ef2fbb
MD5 ba7a9bd9761e9b953aae9b2c3f9810fa
BLAKE2b-256 7cfa8a443a4c14d29ba75dfd532c5c30e259db1a60568d7476da2f7f36c2cdba

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05e2a872b33f676f54a21be294e2b8a9ee7546b37f7fbe5f65b45ac500942536
MD5 119bfbd2c40430e678f45ad1972a9cba
BLAKE2b-256 783e5ffdd332ff8031a5cf5de37d1d3c85b6fe4619f907fb3de3568f2c783376

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6cfbb9180dc097fa2bbd6619853d7071c83ccbdf9a5978a5c25d79157f29ee0
MD5 bf02ec5d5a88b740aa3905f1b9ba1a65
BLAKE2b-256 ef15d8747b89b95990e59b387114803408217ab86a9ad69de9fe2d7b8c33a9ae

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 49efdc35398d92deedd52b9b3f957115c1753d3ad82ce3224dcc6cf02dbce683
MD5 11d954796045573fc38006e77c049d10
BLAKE2b-256 ff5ad2b63de4d0c756c34b8a51ad354461b1ed0b16fe84b177a1fdb683b58114

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d5d2bbfb774b07af0b419cebbe64c54ed893073b221ebc30e43e61b92d4357e
MD5 96dfcac4fd5101dca84df1721a54acc7
BLAKE2b-256 f2d26fc04af6a138ec656dd99ca7cf4f82a4186e3691f8b8f1d3f4ca429b418b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e61821b86b64b5bc1a4db08ab2926a586e1c1fa475072293b45bc9f24379ad0
MD5 3ada8e51f48859b996efed838df113f1
BLAKE2b-256 5a046c560169f65212ff6924fb9dff1c2d636882b59436fbcdd0e5f82e21d1c5

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66f6fc60c69e6d2af762a7fa09c9bff7e9d3d08310de222559f5e8b7f1324b72
MD5 3c06e36447b995bc0de4524103257e34
BLAKE2b-256 f64b688ed2e8af4a6c21976e1d8f9ff9a440530f1d5136c1bc59deccb8d0362e

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05e40cd0ea34e6d26f617bee9d4f572702cf80dce07a58226c9ddf16a4809a62
MD5 dd417a82c27173d3e1bc1dbd81aa980a
BLAKE2b-256 7d9d5152f9297e5db0648c3958d3ad9069430b9120e8a3ba8fdfcc5282085a09

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3e11f9ad3cc6e02aa9889b0db6dd55fe5e3a893704dc8b0b9b66dcd3d4d40f6
MD5 885b2503cf30d3a2444cb0a6b18682d1
BLAKE2b-256 1eb134feb221c1ce716f54e93a75d84fbad66b02991c90a51d8822968c692255

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fbacf03a6f5cd6ff1a9b2776489de597a107e35d712cca9d14e7580cd8f8ec7
MD5 1ddb38694cfa2cb5c2678e35e284f0b2
BLAKE2b-256 6f00a78a37692b1eb01113c815c0fa4317071c0f1ecbb34a9a21455446740943

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3451745df1fb74961b30ea9e0228a29370caf4f8968023b814ee22a59733e2d6
MD5 00bebb568f4ccf7a7874a62866c27786
BLAKE2b-256 399d1353ea3b065c7cb3397a36c5a45f4fae7ffb46b14e8f3cd106ea4e864bcc

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcccd93d3821c686f02ec764cf8e6f5680db43e083b5d211d22f764f0eb69077
MD5 34df991e9af9f033d7c3f98d75fdaa21
BLAKE2b-256 a5781867e19e9cd2f27925ab9de5f36220a9e330c421d4bdb73a0ed9db76055d

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 030f53ca07bb2c83a13f7c18da212d4feb4bf6d662745d3533bd8fd32564f78b
MD5 d1c55ee79457384387c5c7ed3cfe7dbc
BLAKE2b-256 c5f2f8640d21bb1fc95b8dd23550f0b4394d5b7b4daa37873245931df531288b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d026b6a23672225d4696b015b2354fb2dbd76e8da41ac4764136cdce9229012c
MD5 58b8e47810f19cfd6421584a528fe95d
BLAKE2b-256 de2f9c8c40f6a9a514bf5c2e6973818a136b68250d5c0533623829b3bcaa28ef

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6923492f5bc4827e76a7cde352657f5b048035c6f374d97399d450e47ba91dce
MD5 e48e886ba0887fc3d45b05f28e744a5b
BLAKE2b-256 c23d33ca3e4d1c70c50d36e72d98e4dadc824c4d6df3d2dba7c286c529bbb9db

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b980221713e6f7d2d7310157f40a41a4e5380d3ec8509ffa04a5a87517a4e776
MD5 87937adda53a114266b253f8a0cf2ed2
BLAKE2b-256 3099da6174d7d5dac55325e1903f340f1145dd1179961949bdabb6218c8db582

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 586e4d8f234e454de1e98deba6f4f2b75f3d1a2502b84c6e99b2171f690aa8b7
MD5 46602214c503c6eb6ca9ccc5f113e335
BLAKE2b-256 dea153d09beda285a8b6a89642cc2575689956702c1e4a925318f43119647d87

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5359052842a09582028b9301b5d82e64fa3eaced13bc40ecba52f6262e8b0a18
MD5 79f3c05304eda0552ada5f292a985afb
BLAKE2b-256 7f8df40d8db0504e8deb50d8f4d6728285face73f8be5da65709d08d9bc39bb9

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3e00aac52f0fcc0c06edecfeb6feb3475a579a0ec42bebe5871de41b18760c1
MD5 c4df0c3deae07104cdcbeb3ba18db613
BLAKE2b-256 1b0afe03f1d2f46120605c7450df39e5f9e42d48af1a87d3493a6c91baa0fc18

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c4802d2b2e0c1b07abfc375f426f868841a09864dadebefba065d48032fdcf4b
MD5 b411108114a0e6f1ad68046a7e55ce87
BLAKE2b-256 13cb897eb1100757fba10f8bd039e7c24bfd0aa8ae98093c888f3a2abd682b0c

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eea44209c5ab426f557bb7110c402ad01f69db49506d27eb47e54d2cd838ac53
MD5 41a21778734adaa25342f2dc510390a1
BLAKE2b-256 6d5532d391eada3bb3becebde70a8be6bda9e752432e36720df9bbcfaa5f602f

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6bb675336f914bf4aff6a4f57640e64db7e14a125fdc22394f584644b22c5395
MD5 f7e250fc883fd45de59434fb6eed1563
BLAKE2b-256 75f7b16200b790522667ac992df4e58791aa8d9e25db712e4d68424053f54905

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a2fafd901632b3c0856231f727a9822ef4758070b4b631b889b52e539049d500
MD5 35872729c8fae4ddddcca2a7f521b450
BLAKE2b-256 be07b402dbf8e76225f9f635bd610c19a4594ffc5f53ba02241129bb6c949176

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a9e04794ae901868ebe8eca906f5e6e9cd14a9021df890edfda61be1712bc58
MD5 6e9b97ceefaa995570db2a88c5619430
BLAKE2b-256 a2683eea055e971bdd87cdc23a7f2bee94b9d4038db3d86d97ab4999ef44a527

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fafd99094356345e922fbf7c28a3b8a993bc9ab67a687b3201d938d52af20a6
MD5 e29851759913727fd6ab86f071039982
BLAKE2b-256 518c166e348614c7fa471ed00e6c4dad422e804d84ce288de762949df699074a

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4efec5b95ed0c0930d37ef4dbd39b6215416ebd97eb5ae6a1971adcbd3e941e8
MD5 35d90946a8afaa73c7c89e3715c47e5c
BLAKE2b-256 578edf2522105f3045402371098016db3428e78e2766e294a4199a58757a725e

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 421f7c1be63d8c80c28a4c0444b9ea369eaffde329110a35a4b719db19651868
MD5 a49ec3d0bc9c54e412abfc142dfbdbce
BLAKE2b-256 55b1d34a3f4f7c57de78bff35c80b1f43b921f613045554a2db526edee30b0af

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa10ef19153acb2b99eb5e4e800669949d53e9726478cfea446106ab39acc146
MD5 331199b136ca6c4fbaf4264c5bb25270
BLAKE2b-256 757fd806cabac49c2e17d5be95495c42200a9970847728f7236fdf1e9a221e3b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06c1f867f0d2ca254987034630869ce24427c6fef35cfaeb955534e23b723a54
MD5 5bf457a2f79d2f6f87f3d8903b1f6502
BLAKE2b-256 4d01d139c0cf708bf774d1588e0d61cb81285d2eb28380645d93ec99276b60af

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a1846d8f1247aa0e6803b5dd99fba1b0811dcc40665a29c7078eaf47f21d568
MD5 f053e2f92d2fa1ed4a4c12eee82b9f8e
BLAKE2b-256 a1c4bd0c2e08a3e8c95b7c6a2468c62d434eab338226cd2f754623f52e9a8b4c

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0795c17cb0708183e2740f659eb067a6a05b034614c1324a2f4d52908025ee05
MD5 dcab74e0587b6fd84c716a6edd2e984d
BLAKE2b-256 91d44d765d1f3f494635ba75582ae8d44ceb9b1a6bef4ddd7b58a926b9e62576

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c712fdfacb497bdf6c2ede4db55a38ce746b7fb120b243b460986501edbfad5e
MD5 d38299e9ecba724614653839cbb7ec26
BLAKE2b-256 af961e2979b7552f733a2a798f0989c967943fb053fcba6a161f09af9c091519

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 04e05cb27782ae227e09be6a8fc7a755d33d555614643fce90cf835dab9debca
MD5 6cc19553581ac53a7f559e7f59c75ffa
BLAKE2b-256 cafc0469e913fb95e4b7bccfad1a5f706588bb952fcdfa3c006b17993aefb251

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c31889953f65f26ea0ff7f82ae1d550bf2ac8fc74b01feea836c7178a56c22b5
MD5 7370b2f4248fb1bd96a2df8044c8b72d
BLAKE2b-256 c1a348830668a4bcec6963a65ea78a5fea67aaef627c2dfc7a3393288c1bbd87

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78adff81db624fce22bca8e36b1fa8911d137733b3902302d62bfae8d44a03ca
MD5 372525df24c9e9b341d74e9d3b464b9e
BLAKE2b-256 0aee538f9228bcedbed1c352b86d99e7a74f06053f1fd9d26fffc693e6bed2ee

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef8a7c8d54bdf8e4f7b8128c36dda21ca5985d493811636fcab5958475d9d6cf
MD5 d932433756cc529496f77afeb94cd48c
BLAKE2b-256 2bed48278edd824432f89144fab213042da34dcbff6877cb4e6ea8c6117f5657

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e57ad3ac5a06bf7bea6ca02a3e6ed97fa1b70551cb500a12b897a442b2762c8b
MD5 93da1334cd564585753f8fa8952efbcf
BLAKE2b-256 c242edd8feddbc03a808fb3908eff1faf93cc5ba1a3725aa73c0af4f835637e3

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73a79a5dc8bcc095689996cadccfe1dafae3c73de601c5738cd86f78c02c0d45
MD5 8b4bc01876e9e57a303070856f042cbe
BLAKE2b-256 f71aefc4055cc5bbc0c7665e6bd9533e19922f58c73de908cdda5b402cc9a755

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f4602fbea03ec9756201dd13f62d3f4735a54812f3b5cf26be2e714b4805797
MD5 1a9ec44375ee58a892d6ad9a5f14d3ed
BLAKE2b-256 9a2939837b207afb62e9800b5f6c4557d1a6e898bcbf12ce3b7aae3e295c447b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f92952a350ea7481fdccbeb3bbe94d0db42c770a766265b71d512e9bf8d81f7b
MD5 18409b38f251fd2a7c92ed9f2f8a710b
BLAKE2b-256 c0011c5f6205884a295e2d59cda8feaa04fbf6a20094ef663a7812f57759902b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25361ea7cafae4b6c9174fea35e322ef260af2e37ab8109cb5817d61bca72676
MD5 2d0e43d8b951265b84f8e5abb81511fe
BLAKE2b-256 709993fcfa2fc7a513b8d35edffc80ba02acf869182e770210a0d29495977ae7

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0819ed277b712c6218f16f996c31cbea8d73fa5d24af89f06893ea8a3742d380
MD5 bc3f87d31e3eda346427fec63ca788f1
BLAKE2b-256 924b9661fdce2e989661c9c2693dfba2037a8ef2a9e18797c03544e0f3129dc0

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 129f094f3f3bea2636636a48e33cf219dc14d402dcc7a66bdfece320399efeb3
MD5 5b167964cad806aeba545732ca1394ea
BLAKE2b-256 16a36e9120e4f596a38a7ba0119e7bf0a5af665cb5cf9d4eefd9dfa5f5f324d3

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39e29cdc07a9a97e4dd6196e173885bc69966d2bb6e3edbda85b9b3f8e906bdb
MD5 bd50c44e118e0cf6fbbd390fb9c2e49f
BLAKE2b-256 6c7f87e6347227c9fa527ffdac083d55bf04e6c034fe7888689befabb426fdd5

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73b80c9c0addf2a55c03e2ad743409caa6d6fe0507a4fac83ac470c76938e9e1
MD5 ca0f9e3ba881b5079c77e1a5a711b818
BLAKE2b-256 b6b6ee014d900b05935c015373058ea3eda02a73b41769b32564af48b7303c54

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b6547b1f7ec4515e450c74d77e9b2338ba2f76c2573e7462eb8871bd73315aa4
MD5 3fe1497928d9a1beda50c9558abe9f1b
BLAKE2b-256 d59c691878dfb31f9ef589d435a2994414d3461074ebefb8faf4f461975ffe16

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e2c31f576958cd463a8095319a31f04f69535017b486a708e7c5814b30f5dd1
MD5 59310848eca50296dbf301590a499ed7
BLAKE2b-256 a4472ad0b0b92600c1c249819a3c84fc50ac35a3ffa2983d732cd5e8eca00071

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a241ac7981b58969dbd5ff26f8d1fdaa3a9a9aee07efbc7614f2adc14b14cc3
MD5 d15596a4a80a1907e49e2662ff586b5b
BLAKE2b-256 fb8f374551e3ea0076770235d2d67f0cba0088e0fc913e9a8d592ef301a08bdf

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b12af3a68184c08c0109360a066186c7589ab8c93fdc48a21c6545ed1ae42a6
MD5 21bbd03cb0dc1fc67451a3ebf07fb6a2
BLAKE2b-256 3e357a0d89d74ebb1e61bf87a7a1de2d9c9ac425acac7b20bafe0cd19b15ec90

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2d793b1f987a303df6185103a351779df66f04b42539a810f240fbadd5c70e0
MD5 9e839e48b11c04be7bc43a6099cb0ef0
BLAKE2b-256 577ce2c5e5377d627e02bd685dbd27c2bbe4527300fae0891ee6291efef9d2f6

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bcada2bcdc4088bd0ec21788f65cfc9b64663211443450f5ef24303d8b93a21
MD5 50915e78cce38faa8ad3edf83ac18e64
BLAKE2b-256 09e39a8a903f032ca3a49a8b799015aa8aa6bda49324608280fcd316eed0976c

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddba622454e4da06df9d63ccad7d51c90ccd402720990679932c7fccdbe88cc9
MD5 a04bc26e6ba8e1ef8ff4f8f50879e547
BLAKE2b-256 c1c4432031f6f109bcf8a4fbe8eb361cb0846d42056f71968b2143fb51d436ae

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36f862dbe9c14073c02c3b15365cacd60b4c5181af8eb96ad2a45799ef873c3c
MD5 e5614879fb4e5434308067d990052c90
BLAKE2b-256 a93718de722a3d6d39dc4ca6945993373dfb885ce9d96f4e89de1a70f74b6210

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 018402d8ebe4ef85bbeee8003cdc45dba5b3242eef5b3b4be981567567d9c54d
MD5 8f77bbf32a23939776901da9c47208c4
BLAKE2b-256 17ad4083fe2c87ccb54c52a16754f38b5f28595a234216ac976fa8cdcc36d82e

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03499c209deb97547af750cb2e5baed13bf992c36c3b63242cd2e6d684643502
MD5 35173446394a61d0068e6feae0dc46ca
BLAKE2b-256 e936f472a8fe8586832d464521319de83296eafeabba2c495e627969971af50f

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a556b5adde4e3db307b94e0ee4e1a1eef54d2f1864e89c3fd7284b65152dc31a
MD5 5d8945f58a3a7b20d0183b67b0ed3416
BLAKE2b-256 c70336e02606d9e4e05a6247e4d0c7fa84d50fb4ca7e7b89ad8252f8ed9112e9

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c3d96273efc14f4cfc4875d8d5934650d5969d269442cb60ee24f61af2e0494
MD5 e6f63bff868fd755197b9071687fb335
BLAKE2b-256 68af4f042d42bd6dbfcd20c55bb30b8c3ddff5dff1268a6880f80cb9dcced8d2

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a07aab1b5d473e219411c385dd422d575ee4f336b1b7e96f411541d6c3b5c44a
MD5 ad4d5a28b8adeca64e16dd0dc6cbd00c
BLAKE2b-256 f5f69e249d8d88b4940bf6ef6351cd0442dc3502c2d3cdbed898569e70c13bcd

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b06177b92f2600dfcb673451fb1322b7ab81e9320df738826dd1f2c8314b89ae
MD5 ec917cbd24092b23af085959a1174bc5
BLAKE2b-256 e262a45d4eafcfe0ec3d612c8ed523bf47557cd08b31ad1c7361ec1b620714af

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52ce0f5e7e4525d782da32aa172bc018db7a4cc8080f5039ff4bdc4682ee91d8
MD5 cc9e900c075281511772311f2be6768c
BLAKE2b-256 0e63ae150a7fa06121f6d04a9745435586a03d4d11dd4a0e54c3de14b46a935a

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 590761f7895f0852e713a9860133a8e698518488ce9d9226478deb8ce12e43d4
MD5 d76a3cf98d400e946e8a1a787880ea1e
BLAKE2b-256 9b093ae82f7d441d9f080a8999a654faa2e4cc4c14372181e38fdec413c8c414

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dca90eca793f864ddb7e2b027e8fd59f0540d6df31e06b045102012b9e0bceb7
MD5 e49af08ed93842a5bf616e516a6603c6
BLAKE2b-256 2b402fcc3bc3bc9134d72d0a04934b11ac22ab34de7e7483b623bbfe7bae05a3

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90c1c614e654756360c5abb152cf1a6f408f4609cb2577e7a91b751b1c5e5670
MD5 c77f4c0162fab4df5d6c285e12c72c54
BLAKE2b-256 961c9a9de6328ec2c0fd3166ddcc6dfd2795d1b497acbe9bde7324211c22af8f

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ada12db2ac25936ce5f000719ba0949229d57a18cf49464c5a8e992c3e3f3385
MD5 2a10f8fbe550f0fd12c832970c6a1c51
BLAKE2b-256 75748358caf43c6d3117ef88e37743fe2cddbead274943b208347ceea8e87bb1

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d230da83508a8fc8f2ba7db056d7bfaafd914fde76a03edfc5843bb956fe88c2
MD5 45c7f8df1554ac2da9b6d27801c8573d
BLAKE2b-256 f003fb59972707dde5f492b8dc11212b473d1c2e8337c3391e1be412deda3f9f

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 070b4b6621c816051587bb119dcf3b452b3f090dd969ce9762bf29bf10cd6325
MD5 6e9a81fe5aa123209376d8bc5883342f
BLAKE2b-256 a985f547ce41d90ebc3870e50e458cb5c9858c8083845f499a80150d8b98eeb8

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cd18586dfe6d34874126ac427235c9e135a1b18c107718262ebfc28de5c4d83
MD5 dc0776096b711642da98a73e62c2b57e
BLAKE2b-256 5ec935b13a26ab94d026d1933e110918d05dbc7d0d96166f5176de225c167471

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 129d6b76199cb9f276a52291788272824b518ce776151d3b6ab61822c5dcacb5
MD5 c423ffd737f262ad5a2176eb3d764f67
BLAKE2b-256 0a2dfca32792b9c0c2668fe8911d06f9a5703b3d7c5535f2bc9f3dcadc454197

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 494c5e7df123c6b0ad4a9c1dd9f612c7137702f8a4aea9f41566b5dccc17d0a1
MD5 d22282a5c06a0959bc8b0edcdc17cd71
BLAKE2b-256 3267e2641f4d993c86e4bb5d284c187429e79033f9e2e92344ce3f6655a60d4b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 354efeb93ca4a5ad11cd3ea1859aa35cf03595e788156c56a710d259619bd39b
MD5 b38799aff3a8ea11cf7a68f04863cf5f
BLAKE2b-256 ad841923077c7d1ac9e2934408bf556dec794052f522ed4a455228731c20a2d8

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4608454349fbf52fdaffc8fde8308cf3b0026a347b3c0861bed19407e8e16d1c
MD5 721349f4e64942550c1a04d9880b7b7b
BLAKE2b-256 ebf7aa675f3da0dca709dbbc786447bc039f8e97472a5d92c0b51b5d933568f3

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a82a0b7d84fe91aca29f98a52935d3baa84943792fcac721db74728e988c1de5
MD5 c1c7aa095a7d2b6c079b766ecb48d1fb
BLAKE2b-256 588858191143baef41bde9049e9156e1fd8adf7530e960c17bdb99b413b7cf8b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7534407499a1258e1ae2466ab22817af7657e043d4b1d9c7ab5f0baad4647fec
MD5 b47da4fbaa86828c82c7c1ea64b03a7c
BLAKE2b-256 60ec8d596cf1faf57e2607eb8f0b7d533f369ea2c7c31d1dba7da94c41609ea2

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04ecac4fc8e22399a22e65a8b7bc20f00eaae8880a53b54ece41494e31de7787
MD5 41a8dd972ef9026d11c1e0b829e66a91
BLAKE2b-256 6f4fc54cbb52398f49a5ce9a4dbe01b7ac775ac678c4dbeb968b22e169852fe4

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a83de7b1246a5a49402578294fd15284ca463616f522ef88e7bd48add07177b
MD5 6f5ad0aeb60bb44e3a852af243351248
BLAKE2b-256 3d1372216f5d9cfc3742ddfbe5657f1ac0e17e4ab3a3e32299a24d97f95e0812

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25cdfd7594968e7dc13871b9466d8cfb10cc2df7de8271f446ff0d3daca803f3
MD5 3df6863603bdb778fff46fc321f093a3
BLAKE2b-256 e6c5ae83fdfb857d660b799b0e2b0aec61dced4eb7a8a7f13b2a7b0118a8e434

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ed18fa977450d0907ab37a98d3439348832cfbc481a001b9da72db747ced4ab
MD5 65c742377fddf234d072c322a033aabe
BLAKE2b-256 60d2f7197bf98b32ce6088aa17d03112a6e26a5e76a8823b75f7748edf058b33

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 767b9bac636d6969088c0857064c42775b71a9529841e5b1be6d8deaf9664ee0
MD5 6e73c62f711c4a4117a80d56b8d1abfe
BLAKE2b-256 ccda311d5087456f537e11db3a2f6e69b5b17176b3d2e44e9d2a2a95125c2e6b

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d1c7b2caee29014e97db199d677d010170f5184b509fce7c28d69992bd4d82a
MD5 5fdeaf566f277e49222b5409d3c0b8b6
BLAKE2b-256 6335e4c7e2b9292ee003781c92af4b728ed997b4aba1567eb75701a0ad9f96ad

See more details on using hashes here.

File details

Details for the file actfast-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for actfast-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c334679584163722fd6362a818ca8d7333e3df18a84ec5b1e0ae30856e1c183b
MD5 43842ad27092e9f625833ea4c87cbe53
BLAKE2b-256 2e3230028842a7f92b67ac2de734af459638a4730596909c0c9fabad499ce45d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page