No project description provided
Project description
[!NOTE]
actfastis currently in early development and is not yet ready for production use. Please open an issue if you encounter any problems or have any feature requests.
actfast Fast actigraphy data reader
actfast is a minimal Python package for reading raw actigraphy data from various devices. It is written in Rust and Python, and is designed with performance and memory safety in mind.
In preliminary benchmarks, actfast showed around 40x speedup compared to pygt3x for reading ActiGraph GT3X files.
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
Hardware support
This package has been tested with data captured by the following devices:
| Device | Firmware | API |
|---|---|---|
| ActiGraph wGT3X-BT | 1.9.2 |
actfast.read_actigraph_gt3x(file) |
| GENEActiv 1.2 | Ver06.17 15June23 |
actfast.read_geneactiv_bin(file) |
Similar devices might work, but have not been tested. Please open an issue and attach a sample file if you have a device that is not supported yet. We will do our best to add support for it.
Usage
import actfast
subject1 = actfast.read_actigraph_gt3x("data/subject1.gt3x")
If you are using Pandas and want a similar dataframe to what pygt3x offers, you can convert the data to a dataframe using the following code snippet:
import pandas as pd
accel = subject1["timeseries"]["acceleration"]
df = pd.DataFrame.from_dict({
"Timestamp": accel["datetime"],
"X": accel["acceleration"][:, 0],
"Y": accel["acceleration"][:, 1],
"Z": accel["acceleration"][:, 2]
})
df["Timestamp"] = pd.to_datetime(df["Timestamp"], unit='ns')
df = df.set_index("Timestamp")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file actfast-0.1.8.tar.gz.
File metadata
- Download URL: actfast-0.1.8.tar.gz
- Upload date:
- Size: 21.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
138d126654bc65911112b5af1bc97feb322db06b57e99b43fdc02d0b99b1e524
|
|
| MD5 |
b479665e1fa4480cdea8546643833ef3
|
|
| BLAKE2b-256 |
8e6b7b1adfc97765784a4f1501666747141f8beba9ef3b7c40bc90f2052da2a5
|
File details
Details for the file actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b91f7c59196a8238be458af6011d814128178547e8e8743dfd0bd7b4fde12b6d
|
|
| MD5 |
cc6a39187e7c8be38ce1f73edc384dc7
|
|
| BLAKE2b-256 |
693786648c7e63e276914eb77a170d92a7a9cec1a14b7de2e8f1d529d0fde013
|
File details
Details for the file actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8361a9c724f7cd4b0c78c7c82a4dcc2b628b1529373b381eb8728f353dc5a4f
|
|
| MD5 |
b1b9e56f322d1e1041002306e0f7c5f4
|
|
| BLAKE2b-256 |
9d366e97322503607a43bf296a3ea2e744b0031db5000d36a77c7df188726394
|
File details
Details for the file actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04af543d04f224ba278c919d138881664ea55159f4195edc98744ea711db0bdc
|
|
| MD5 |
6470831fd2ed2cd68ffcf0b560500690
|
|
| BLAKE2b-256 |
07766915d8eaf53cee93babf6dd42d23d872a19517d5342daf71c5f7a7dd6e58
|
File details
Details for the file actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22217c6ffc25b53f082dfddb1a825c41ed6e357a56bf6bc544f074a69245bcac
|
|
| MD5 |
c1d89affc9f50d5b47a6473e14496a92
|
|
| BLAKE2b-256 |
bf63f0b12475065f171851b662f558fc1424e0f0e44346dc635b388b11c4e912
|
File details
Details for the file actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9ba516ca154b1bca7600bf433e0d42cbad6f680020dfd24bd49a0e96550e3f7
|
|
| MD5 |
283a61c4d197233509a579854a7c3bcf
|
|
| BLAKE2b-256 |
0e2e1967dded0ce83b032c0a5844adcfba67a50a2aa3fcf27c966e60dc3386f3
|
File details
Details for the file actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79e3aae20328b72f2512033e567a36a928aab34f7cd8bd0c78e1f14519dd223b
|
|
| MD5 |
cfad60a27440094108b3a3061c7fca6e
|
|
| BLAKE2b-256 |
895e8fd6737cfa1074b2bcd5f1049256cad898dfd85fe08d157f9b6fa444bf92
|
File details
Details for the file actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed573c9894974ac8e7734ede38840e2a97ad3fce071422866759b0c260d00e09
|
|
| MD5 |
2a58cd23cbfd0f9c7e8d927bb516e150
|
|
| BLAKE2b-256 |
3da21a7b889d18d00948a9280f847232371689a0192e2c3e1f9a1eeabcd3faee
|
File details
Details for the file actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6d6272e2ebd5f6b319cdb7cf7d039774c675df1cee6f2e67a0ec298efcb0bda
|
|
| MD5 |
fb3b86f578f766825ce431353adacb1f
|
|
| BLAKE2b-256 |
eabd695629996d1ab7ab43d10c2b80c58548bd52b260d98c6e2a1ac1bc3df47a
|
File details
Details for the file actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5b223fc842bb1acaefe1e2f56d06c7090d6eb113fd4d308bc050fbd0d943bf2
|
|
| MD5 |
ac79ade6b2702d33e35c030946376b2e
|
|
| BLAKE2b-256 |
c5df588f2c1c387af72091c091091c4ed2051c79663ee3b3d86eb49f3fb0f0a8
|
File details
Details for the file actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f43880144bac1d36d16acb44c782e7fa085ecd1b125d670bc5f772db088d61d7
|
|
| MD5 |
b7cff7d74f2c461759c51fabb2be5592
|
|
| BLAKE2b-256 |
1e948cafb62713821ca39d4a851540e1036e5cdbd0e7363383be25dc5f0b3eea
|
File details
Details for the file actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2587ea9c80d6f21e142b94fcd1a8b49f91147bd0b2479dbe1d0cac4d40dfacd1
|
|
| MD5 |
4d8252a12b19db25ce7d18202da70d09
|
|
| BLAKE2b-256 |
b59b006ada2d54a83dd9016ead8a58182f36604a03c3e66ee4cb2af034cb7b33
|
File details
Details for the file actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70a831208611b2da09fc4209e1b1f32cc2b7bac1df4957cc33c4c44580f1d096
|
|
| MD5 |
3ad18f5c4b6d664dc2363ce8914c762b
|
|
| BLAKE2b-256 |
6f959e16412a8733c68465e75ac06059d929d85ca70ce9e35d15f61d7811ebb3
|
File details
Details for the file actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de148807de0e93548ce9020790548fa6673b94192d2f2fe1d67c4f6f4a010efc
|
|
| MD5 |
ccb28b7731aaeb333d6b6d59ac688e32
|
|
| BLAKE2b-256 |
5af3c254bf3ebb1f3a7921b7a6e636fa731d4876959bc9a756126ded0bae0970
|
File details
Details for the file actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef6f6143acd0f68fa001d26633a1de516f22aba7e53dd408fa1fd4899b621404
|
|
| MD5 |
515b81ac67dcccd8505b164b9897f361
|
|
| BLAKE2b-256 |
a2d48037dc5224eafad4c20c1016b7472b8bca3fa8da8aee809888a876fff100
|
File details
Details for the file actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ee905fcbca0fea38ec7b21df7216516202b25838cb242d79d919f626b0e5a77
|
|
| MD5 |
2d4efb0c6f449a0068ddeee1efc3cba4
|
|
| BLAKE2b-256 |
eae2a2128de1ba404fe6f626e50726ebab987bc660c70bc781ec32a0139c17cc
|
File details
Details for the file actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ed6c4b965618a846d1462633fb8f3a372fd942b9502cf2184b30b260404ea62
|
|
| MD5 |
71ca43dd687172b34d0c1635f968bb20
|
|
| BLAKE2b-256 |
20bc0c25ce342e2281f9f289ec49d76b10dc8a898123812a382d0035f1ec682d
|
File details
Details for the file actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ea7ce7ca700d407d9ec5d32bacb535294cd004b09c55f079f635c1bb1bc323a
|
|
| MD5 |
dcfbb6b89d49ec32dcfc8139ec2ace98
|
|
| BLAKE2b-256 |
be12a16be25953d98a92ee3a3e5190da65773304dec8f430861561b893065838
|
File details
Details for the file actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a5f7c0d0a2356ff0582a86ba56ad53c6cfa47a16780e1e8d9efb57272a2eca9
|
|
| MD5 |
9f3bcb8b976720959d50377fa1b80edc
|
|
| BLAKE2b-256 |
2693102ab080a925e6e8fbdf1118d70996363d670553ed9d44c48198dbe3da00
|
File details
Details for the file actfast-0.1.8-cp312-none-win_amd64.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-none-win_amd64.whl
- Upload date:
- Size: 437.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0acdb77e8fafb36af37e7f4d54575f6062532a3e44e483268d5a303665573c34
|
|
| MD5 |
81e53540c59e3e6851c21d432641e23a
|
|
| BLAKE2b-256 |
7bb858dbbab2b91c04a08902f9b743e116d2cf992d3251990f029357b828b5a4
|
File details
Details for the file actfast-0.1.8-cp312-none-win32.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-none-win32.whl
- Upload date:
- Size: 426.7 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d7e37a747f3ce158d0ecc586c420876d90a8a5696e7d0a1aabc73f9eee09bfc
|
|
| MD5 |
cb552962e1e0d27b43d998890b27f2f5
|
|
| BLAKE2b-256 |
2ca94745ea77b18bc3b11c3cf7606f9b63b35dda140e9c7f2a7eda370e0efc46
|
File details
Details for the file actfast-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d075ef1d045af220d42acc7ff1c9bd45618872659a81834d62d1a001588ea1fb
|
|
| MD5 |
dbe95b5e294c428796613c489ded446a
|
|
| BLAKE2b-256 |
afbadcd290322ef67eb3bb5c66ff13e2422aa625e3a28838caee9455e1546a7c
|
File details
Details for the file actfast-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4147b6630dd7f66cac55c4372d87e721f0194cc3c174f99911e9bde0b8c16066
|
|
| MD5 |
dec5f2c541820de32f7dd3028eff4d1e
|
|
| BLAKE2b-256 |
cb93f88dca590d1433da523cc59f945dca2b8b4d1b9b520f8ea8f41d7f2fb8a4
|
File details
Details for the file actfast-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1232783a8d64ca6f88e0e332bf317885cb4704167e91d9bfd9b19b014e1f99b1
|
|
| MD5 |
4426a55cf1e027bb078df9bd5721d0c3
|
|
| BLAKE2b-256 |
cd93e8dd9b3040836d22883b8d27f438c3bee67da63974483631482c20983978
|
File details
Details for the file actfast-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9356360b0c23ccdce3c938b6e8d064b8abd5617dc2d552ea3e9cc1dd049d13c1
|
|
| MD5 |
d0bea43213ef13300c657bfbe16c6541
|
|
| BLAKE2b-256 |
5403039547bf8c0249f946c4fdc88a4d67daebb4ec164198bf18108bc0a3a361
|
File details
Details for the file actfast-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
510437f7adc20b01abc971240eec405e0bc9cb5ca7b78f6f93189e4a2b3bcef4
|
|
| MD5 |
8a3bc7c7739451f0a405b5384c107aef
|
|
| BLAKE2b-256 |
6ff7c5c2fe522ce867c69fc262aa80a36d7251391919625003fb1b644b2bbc02
|
File details
Details for the file actfast-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9032e677e15fb2a78c84c6d1ca344b41598f605cd105ac0de337498f37184157
|
|
| MD5 |
b7cc58b4f5994d5f0c043db2fa91683b
|
|
| BLAKE2b-256 |
a3613e8d4189a2d31e9c18fe0c1fb44ba47a2854b078020c34f6e0323aef2eec
|
File details
Details for the file actfast-0.1.8-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 501.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9347eee1f8f64e443d09a25220a0ff76e780eb708c80197f65b51d2ef92d119
|
|
| MD5 |
fa51f10efc97e22cd1f203287f46b088
|
|
| BLAKE2b-256 |
20bbfd397bf34286a668f4de2d938ba09920d19241b560ee2284d1600320f9e7
|
File details
Details for the file actfast-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 581.1 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c008a6d13911e44a774dab50759e75263a8e0a7067b6f30eeae9db63b813b08
|
|
| MD5 |
43a2311b21468811eb6cfe05bb0ce359
|
|
| BLAKE2b-256 |
817f3a733770a4d2f41cb16bc15fb12f48d425cbfd26dbadb4bb1e500e2f6e08
|
File details
Details for the file actfast-0.1.8-cp311-none-win_amd64.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-none-win_amd64.whl
- Upload date:
- Size: 439.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
947ce73f05b192cece4f38367da726a8106edba7ff5abb4f1d889bd9c7c17f1b
|
|
| MD5 |
7c0a3cfc9b9e1d11f34c94aee8cd427a
|
|
| BLAKE2b-256 |
ad9b1ecde53d05b2faa92957eec83d80db1e9c8b2e46480a8ad289584fe7ccc9
|
File details
Details for the file actfast-0.1.8-cp311-none-win32.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-none-win32.whl
- Upload date:
- Size: 427.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dd173367dd58bb766e529cc1c78e4f97b2a90f6fef08625c4afaa6ede99304c
|
|
| MD5 |
80cda61a18335294789dcf21afe89b72
|
|
| BLAKE2b-256 |
6be9adad9545f69ee97a91ca2345e9ac4fd1dd46b1cc6a89c4a185e2208b0dcc
|
File details
Details for the file actfast-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5e671149d919995f2c52e851d107b190c79aae857b336f891a47265bdedebf3
|
|
| MD5 |
f5bcc276c84d7216755e747fc11ce9e0
|
|
| BLAKE2b-256 |
6f6228a46b19fa7ee6d1c4094d478e2f548e78a1ec977692fdf37f22a9e5f23e
|
File details
Details for the file actfast-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
192da7515315ad52ce91d901ac9c7aa8e9390c750d3718232ad08e42d43bce5c
|
|
| MD5 |
0de02ea09501d32a6cd116c568542aa3
|
|
| BLAKE2b-256 |
9fdfcaefaf9dbd7f8dcdf605c9cb87a7b4e34f9d8c2b246f59eea58c63e5a7b0
|
File details
Details for the file actfast-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b760d8af46adfd529098c2809f65948f5f5236327328298014cab81f5dc6be9f
|
|
| MD5 |
afa7fc591fb3250fdb180d3d8bbbf79a
|
|
| BLAKE2b-256 |
9526366d4c91f5ad92e8ec1f1b6f044ec2dabdccd6ef15a6465378b1819343c6
|
File details
Details for the file actfast-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84580c408ac8a8a6dfa38660c26c2b3cc2bdf9537eb1ebc57263c472318eac95
|
|
| MD5 |
ea280241e66e2ab65beeaaab0e76f69c
|
|
| BLAKE2b-256 |
50059d9d48fb358111343da183f0f8e88c7112058b8aa2b464577d792aa3fc93
|
File details
Details for the file actfast-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aadefda617c9cdf4f56c0b05fca3eed6ea06006b35e95273c321b9b9527a5049
|
|
| MD5 |
d5014f31dfb2cb3d7e856c2ea9933337
|
|
| BLAKE2b-256 |
3b18cf3d9b62949a635d5823eb6c3ec72b69ddda235af160f3b25589d0aab026
|
File details
Details for the file actfast-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4353c4d7b16b7221e3545aafc11478e366b3c0aab858dc54f3e596838b14e837
|
|
| MD5 |
5eafa1840b49cb2aeaf929f7e1ceb6e3
|
|
| BLAKE2b-256 |
4856335aefe9681ad3d6ed2ba12a8504e305120051e9698b29dbe3c541640bd4
|
File details
Details for the file actfast-0.1.8-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 503.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1679c4f7a4964dc28a211485c4e3f262cf2b340c68abf49af5fb5f85f5644c79
|
|
| MD5 |
6d7de103c4e22ac6c7d5adc012842dd3
|
|
| BLAKE2b-256 |
69a002b30fa9b2b2e10359d109c664e4a042213ec6dd34bb180672ee61a2818f
|
File details
Details for the file actfast-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 584.5 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bb6574a8096945d09a489e8aeec04c90206c1d9b820d68900fe4d66dce23700
|
|
| MD5 |
615c84f2484e08e942712181155e9950
|
|
| BLAKE2b-256 |
d0bb26bd15f506955d83edffb6fed044857c48b7405a947d3812cc5c0b65264f
|
File details
Details for the file actfast-0.1.8-cp310-none-win_amd64.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-none-win_amd64.whl
- Upload date:
- Size: 439.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4090f5f869cbd4d33b27348e900d697eb93d7936a98403b18dbd921169eda929
|
|
| MD5 |
bc84359bfb9efd9fd4ebb25c91469079
|
|
| BLAKE2b-256 |
8d0cebae2fb2eda1295736e1840cb58d05e9228f9fea9b2bcb27005f236760fb
|
File details
Details for the file actfast-0.1.8-cp310-none-win32.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-none-win32.whl
- Upload date:
- Size: 428.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8728590b66fba85d8d253104bfac3292f2ef402f4332d9f426630a48e53cf213
|
|
| MD5 |
c4a41ec7e79e9bdd298c79c1f35e0f7f
|
|
| BLAKE2b-256 |
82ee7dc59742fb2298e50f9c1c221150abfd23e93fa55878069700a8a92942aa
|
File details
Details for the file actfast-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6201fd6b7e4080370844eff85d751121c34db6ae44f2225bf60b0e7ced084675
|
|
| MD5 |
9a69f95ad93dc1d0da1e1eda670e67fd
|
|
| BLAKE2b-256 |
419cb451583d33da577f4769cd4cbfaf75c22d5b60e16ab6d57fb2d0cc3cf196
|
File details
Details for the file actfast-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbf02592b9cdb795379e9118ba9206b9413ab947d5f867007da2e0241bb8f03c
|
|
| MD5 |
4c6431ddd8ff72bcb6e7896eda004d27
|
|
| BLAKE2b-256 |
6b32190f0845275836af4decb2f386104fa5b9332ba72c798f788e35d2f471cf
|
File details
Details for the file actfast-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1266a6ceef2aebeecdcd670e7c1ec072e983acc7bd8143357a82b3abced40584
|
|
| MD5 |
ad2996db203fb6d49f771fd2cdc5dc34
|
|
| BLAKE2b-256 |
40da164772287b496c09e0320feb7f44da4d5a08c292c33aec466411ab70f66e
|
File details
Details for the file actfast-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
374997706970b37546fa9723ca23f31d7e072ab67e10093e14327fa02c57e09f
|
|
| MD5 |
08905817cb178dbb4ba42be7297dd2ec
|
|
| BLAKE2b-256 |
3ba0add5ca0a46051458e0c438bf43fb5e525816d1ff5ce4d990fd6202682275
|
File details
Details for the file actfast-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e538aa871cb89aed80c4623584fbef73d373e87587aafe9cdf86acc7ff1f311d
|
|
| MD5 |
2cf92da3d5a5787632588d1877a8917b
|
|
| BLAKE2b-256 |
4c4521f737bad07da4acd373ca2d2a1a4e674138b8c663e6ac848e9e61c60f64
|
File details
Details for the file actfast-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0388ef3118476047b8f626b7a4c166154842c2716b625284dd91c54999b25e98
|
|
| MD5 |
90077ddddf91fea67640cc4e7513e4ce
|
|
| BLAKE2b-256 |
057a175486636e7f2dd2f9347717480ba62199298c2946e33dbaaf23958a479d
|
File details
Details for the file actfast-0.1.8-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 503.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
febee7a9e7b1b272d03afae81402ed9954d73b4aa94c27db19add1417c14ad46
|
|
| MD5 |
faf02c30caca67e428024948bd9496ba
|
|
| BLAKE2b-256 |
e0bc66539817ebf740c92042ebc1b3c6bb8c982ba056d148722a50ff17e9117a
|
File details
Details for the file actfast-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 584.6 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c5e270ec324dbcfdc6a81c5bfd77de6d0cea6f6686eb01fe25481f5bf73c053
|
|
| MD5 |
1963cffaf3364225293854b7b92a2541
|
|
| BLAKE2b-256 |
d0a999def3079da52384978507aa2f3e81243f7c3277978ba26ba186147f2194
|
File details
Details for the file actfast-0.1.8-cp39-none-win_amd64.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-none-win_amd64.whl
- Upload date:
- Size: 439.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3da4e642cffd676cfa151b6d80ce340248d94f2a8a899f4028d1d0aae44ac424
|
|
| MD5 |
1eee5753bcdce6ab909601138e5d2429
|
|
| BLAKE2b-256 |
53766b24e8eae5600c8be5895a68176e39770c1ede50b330ce954063181e8940
|
File details
Details for the file actfast-0.1.8-cp39-none-win32.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-none-win32.whl
- Upload date:
- Size: 428.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1db81106d6f12367d279380c45f7a71861b238d8ee63d451992cd44fcf670238
|
|
| MD5 |
369517f6e0c860fc49d7d865b0a9abc0
|
|
| BLAKE2b-256 |
9bce2114d87e7f43b892d7337c85d923fd920af14163f15603ad197fc9ccae88
|
File details
Details for the file actfast-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1403c3cb1f9ec939c01f8abbd136e50ecf2e3dae3f92dc56c1d4f7fa71bcf907
|
|
| MD5 |
e917d49a9c6d0b1abb761a32aab4ef03
|
|
| BLAKE2b-256 |
0dc437eb34cb60dbc08143b6d06386d630e1c57c41346bc6e0332930ffde2530
|
File details
Details for the file actfast-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52bd2688e36c271f2f13115765cfb53c08c63b0978a101023be223c7bb879e4a
|
|
| MD5 |
6a91aa793b2c6078e5104ab14fb10218
|
|
| BLAKE2b-256 |
afdf27477ce885c01385523caa6bc69be5c047657137a4deb8b4409016e4a868
|
File details
Details for the file actfast-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
400ee287553269c9351c8db774c17112b3b081f4f8f60a6b01a93a509efb2d9d
|
|
| MD5 |
941cefbcdfb0ff9fb348c2275b06ed16
|
|
| BLAKE2b-256 |
ce1f72ead304f021e4f33b9c2d31a88e196f9b1a8b0d834ec534e17397901302
|
File details
Details for the file actfast-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10b54264a26bb11ac18c2dc8569f62eda00864fb0319d61af3bc5073562252b6
|
|
| MD5 |
3603cfc9fcb0ae6bfc60ccb10ee40ec4
|
|
| BLAKE2b-256 |
97b5242986ab10639109861e4efa1dfe227deb6970ba22c0c9b5c59c99741ce9
|
File details
Details for the file actfast-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5028cbc3fc300943aa97866aa47ba70af77dea2ea58894b1163d8db1d2a828ad
|
|
| MD5 |
dc050717427b8450bd2aa613ab497fad
|
|
| BLAKE2b-256 |
b9ac6d689f6412841a0f7054ad6cffe3ae2f5d46e0f2a566b23e02dd850552b4
|
File details
Details for the file actfast-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
404d161cbfbf55b00602f70800df3d74058d5df56958a2efd41bfcea54d8b189
|
|
| MD5 |
c4ca5f42fe5d90c781bcc43cd2c79a0a
|
|
| BLAKE2b-256 |
6687e6f36e9b1aecfabbcf9be636896140574d570d3a9a91c0141d269c2bc568
|
File details
Details for the file actfast-0.1.8-cp38-none-win_amd64.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-none-win_amd64.whl
- Upload date:
- Size: 439.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cca089899d19ea95b1cabf51a0076a2f80084751f8582a8c2dde9c101de7c37
|
|
| MD5 |
1cd41fa91128d673048e1ed37fc92f31
|
|
| BLAKE2b-256 |
3e6a4bbb5d6c0eef9dc6173239a80ce3935b0258d13823833c39adee5d00f091
|
File details
Details for the file actfast-0.1.8-cp38-none-win32.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-none-win32.whl
- Upload date:
- Size: 427.9 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8823420e2266062cc580fd313207fdc49410ed86b3285a815d375711a5b1dbad
|
|
| MD5 |
40719c0281664843662bd608ee501ab8
|
|
| BLAKE2b-256 |
0569d4c87735ebee16f3d092711919f595145c14a45691e9b754dbbf9c02fc0f
|
File details
Details for the file actfast-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d1b3f30dc9e3c9e1ca2e318dcfe77096fcc999c9fe5913e4f73b43e923e5f1f
|
|
| MD5 |
df377bd68bacb53ca5aae2e762671eb7
|
|
| BLAKE2b-256 |
bf4b9a495f5046eb976d47cbbc8cf899222528c62f591b50f76a093feec0cace
|
File details
Details for the file actfast-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7287978bea9b879e9bbb5de07f7dc3657d4196c981bb97cad36d9239b25035d
|
|
| MD5 |
13bff181c930a8054746ebcd9345c9bc
|
|
| BLAKE2b-256 |
4978e35cd160e20ecdf5838d4ac6ce8fec06e76430c445fde68a84e786f1967e
|
File details
Details for the file actfast-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f9c65145a3a2d0e93b90ea3ec249a75e68709d136b79d974d5ca120632137c6
|
|
| MD5 |
641c381351e6b00b98acca1a77d0d44f
|
|
| BLAKE2b-256 |
88d9b194ba6d764eeaa8861a35d325ad227d2719133c1c311b1e59670a53c8d1
|
File details
Details for the file actfast-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c833928d54e07514cec2c8738e8cb14e57e60b767fd5fd239450128fa9be8b9d
|
|
| MD5 |
de6b46f607f083d98eb1eaa24ee166c2
|
|
| BLAKE2b-256 |
6c45a5a136a6efe741eb8c3eebf12aa1c74e27e5c9b1447f1f9de96703854bf2
|
File details
Details for the file actfast-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b42a72c350b6dd88ee693a25e5567d6fae42d4e629ea132f5631cb1def33b770
|
|
| MD5 |
2513f06b54deb604a6e0db7d0f384b84
|
|
| BLAKE2b-256 |
3948e6ca67481984dd798a564d9a9406496212cb1036a3e7195633c8af0b8371
|
File details
Details for the file actfast-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.
File metadata
- Download URL: actfast-0.1.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c57e8e8fae7e3d78529a6b6ada58d3eecbd0d668f378b60a7f1d4dda0bf47463
|
|
| MD5 |
0d011503a78b80ad2229e6205f1f6652
|
|
| BLAKE2b-256 |
99f3a107ca5177d842f2c160ac32e4a54d3f3b893b96f58a4723eba409c03c39
|