Skip to main content

Python bindings for the Nalu acquisition system

Project description

NaluACQ

naluacq is a Rust crate for I/O with Nalu Scientific acquisitions in the GbE-compatible format.

The crate encompasses the following:

  • Reading acquisitions
  • Writing acquisitions (mainly used by naludaq_rs)
  • Parsing events from acquisitions
  • Calibration of events
  • Exporting acquisitions to other formats

Some of these features are made available in the Python (PyO3) bindings for this crate.

Structure of Acquisitions

An acquisition in the new format is a directory containing multiple files describing various aspects of the acquisition.

  • {n}.bin - binary event data file "n" (up to 500 MB) containing raw events back-to-back
  • {n}.idx - index file containing the offset and length of each event in the corresponding .bin file
  • metadata.yml - user-defined string metadata. NaluDAQ uses this to store board parameters and registers.
  • readout_metadata - more user-defined binary metadata. NaluDAQ uses this for extra information about the readout.
  • [pedestals_calibration] - optional binary file containing pedestal calibration data
  • [timing_calibration] - optional binary file containing timing calibration data
  • [adc2mv_calibration] - optional binary file containing ADC to mV calibration data

Event Storage

Events are stored in groups of 500 MB maximum known as "chunks." Each chunk is represented using two files: a .bin file which contains the raw event data and an .idx file which points to each event in the .bin file.

Bin File

Events are stored back-to-back in the .bin files as unparsed binary data. A maximum of 500 MB (at the time of writing) is allowed to be stored in a single .bin file. The rough structure is as follows:

  1. Metadata Sector
    • 8-byte header indicating file version type and sector length
    • user-defined metadata stored as raw bytes
  2. Data Sector
    • Event 1 (raw bytes)
    • Event 2 (raw bytes)
    • ...

Idx File

Because searching through the entire file for a specific event would be painfully slow, an index file is used to store the offset and length of each event in the corresponding .bin file. The index file is comprised of several 8-byte entries, each indicating the offset and length of a single event in the .bin file. A specific event can be found by reading the entry at 8 * index bytes and then reading length bytes from the .bin file starting at offset bytes.

Examples

Reading an Acquisition

use naluacq::Acquisition;

let acq = Acquisition::open("path/to/acquisition.acq").unwrap();

let idx = 0;
let raw_event = acq.get(idx).unwrap()

Parsing an Acquisitions

use naluacq::{Acquisition, Aardvarcv3Event, ParseInto};

let acq = Acquisition::open("path/to/acquisition.acq").unwrap();

let idx = 0;
let raw_event = acq.get(idx).unwrap()

let parsed_event: Aardvarcv3Event = raw_event.parse_into().unwrap();

Building the Documentation

cargo doc --open

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

naluacq-0.4.11.tar.gz (43.7 kB view details)

Uploaded Source

Built Distributions

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

naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (841.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (769.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (766.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp314-cp314-win_amd64.whl (582.5 kB view details)

Uploaded CPython 3.14Windows x86-64

naluacq-0.4.11-cp314-cp314-win32.whl (544.9 kB view details)

Uploaded CPython 3.14Windows x86

naluacq-0.4.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (782.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

naluacq-0.4.11-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (833.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

naluacq-0.4.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (766.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp314-cp314-macosx_11_0_arm64.whl (695.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

naluacq-0.4.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (767.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp313-cp313-win_amd64.whl (582.6 kB view details)

Uploaded CPython 3.13Windows x86-64

naluacq-0.4.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (784.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

naluacq-0.4.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (834.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

naluacq-0.4.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (766.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp313-cp313-macosx_11_0_arm64.whl (696.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

naluacq-0.4.11-cp312-cp312-win_amd64.whl (582.7 kB view details)

Uploaded CPython 3.12Windows x86-64

naluacq-0.4.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (784.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

naluacq-0.4.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (835.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

naluacq-0.4.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (766.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp312-cp312-macosx_11_0_arm64.whl (696.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

naluacq-0.4.11-cp311-cp311-win_amd64.whl (585.0 kB view details)

Uploaded CPython 3.11Windows x86-64

naluacq-0.4.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

naluacq-0.4.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (839.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

naluacq-0.4.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (769.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp311-cp311-macosx_11_0_arm64.whl (701.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

naluacq-0.4.11-cp310-cp310-win_amd64.whl (584.8 kB view details)

Uploaded CPython 3.10Windows x86-64

naluacq-0.4.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

naluacq-0.4.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (839.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

naluacq-0.4.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (769.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (790.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

naluacq-0.4.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (843.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

naluacq-0.4.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (771.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

naluacq-0.4.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

naluacq-0.4.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (839.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

naluacq-0.4.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (770.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file naluacq-0.4.11.tar.gz.

File metadata

  • Download URL: naluacq-0.4.11.tar.gz
  • Upload date:
  • Size: 43.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for naluacq-0.4.11.tar.gz
Algorithm Hash digest
SHA256 3caa38bb6b8ceb58f83fa1757760c08eb0363b8147c3fcb3ebfa66caa22e35b0
MD5 f04fdcbf63c7fd82f39e17a22dd66ab0
BLAKE2b-256 21627a51085a681f32d1a8d926da036813b546b1636ce7ed39390c0c9405a413

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eadfa515e71f1493514df7fb6b7d3328ae5c172b9e3d51228f8ebd75183a218a
MD5 d589e0a9c8dc53fe166b2cd8ffc642a1
BLAKE2b-256 2cb8e614aef4d8384bbde316a004e01e272216e6caa888c0e37b88b8bbf54301

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c9a911103984d4d5b7bf229114c6b7e8e6c7462c0510c671dc0b1319733c444
MD5 6a195f11711570001b1c9f2b57c1c565
BLAKE2b-256 2865f6769b037d16ec1bce299b197d7afccc247199d76c61f8924ce00bcb072d

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b40b1e0b7c6a303243dfa9770b7c69a46c6c1cad93227599181cd87a16d42ac5
MD5 5ab723874892436295c953d4b9266170
BLAKE2b-256 659521486a609a53ce283e6b8f2b90030f373dc3e6036c908b29ad26aa9a4e8c

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 434c721ae2026eaaa26f61811d2d1869dea15bada5f73a95b95746786b3dc09a
MD5 e586b39658121913b7264eca2f8728b3
BLAKE2b-256 dea1ecf6c0cda7f1af8206a5273dd729b02b57b8ac73b6876667dd542383f5ea

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5fef031f61a3f6abc59e6b6c891a8280031436f5064793eb7140b3e65a5a0b07
MD5 4ae31553c729495f37e301dc258cd72f
BLAKE2b-256 921f1c7b4559d6da358396ce4ecd0cf6bf920b4f6399e35c2acf1faa6270600d

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp314-cp314-win32.whl.

File metadata

  • Download URL: naluacq-0.4.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 544.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for naluacq-0.4.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c2511774c109259c065934fa22e4441785bff481c972d73b4dc557f4368df38b
MD5 732e5fedbc0b4b965d3379e3e5e82ced
BLAKE2b-256 8095404ef05ba39df4e10889c26a4cba33bf69bbf98e3016a7955da93535a7a0

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a240bb5279b1c42ba0c96123af3bb9cb9cd3f7afa149a62d7694f66e64ab4c7
MD5 691b8abc140765054cf24c426c3cf041
BLAKE2b-256 046eb3ca24865c2b163b4853a6833e3cf1ef29bb7a477ee0527b0f7cb9ff8b42

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96c7dfd8218d820d85a8cdca22f914eac75bb3fbbbf06ae20db8bc0f849966e6
MD5 c08492b5beca1efcdcdf9f70d6abf3ac
BLAKE2b-256 8fdcbc5ba74bfe203a9fb275f64259f5608cafc5fc19358b624c4a153cb1b7ef

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ce4dcad70ef94666c93acb75d340239609fd8156994cfd620edcf0096c09002
MD5 f4c3a06bb7197c26d07cb5869aae0812
BLAKE2b-256 a8408055857b4fb2f837708d7ac2231ce3b8dc8697d8ba8a0185cb1173b2e62d

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5be63cbb0a702f8fd51398a3ed46f33787d946d4bf5c68c699a32bc55885ecef
MD5 08d15c6d3b671952096983f7a9066499
BLAKE2b-256 fd41fb6528762d5298e1aa61170b4ad5363c1225516b6fea630a7e59dd85f9a2

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d47fe55d66ea819f341cb27839a38865a68d59741714497cdf65ce2c19581f12
MD5 6de05e451ec513af6b3cfbf36ba3bde3
BLAKE2b-256 a58f41f32728433de5de8033313518ed0d44fe05176815cb015697bdccb745b1

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4ccbd5d4665f8234651bf30b75de108c4a9e83ad554f175eaa2c9673ee8540ad
MD5 d313ab1edf54e05a0d4eac0dd344e70b
BLAKE2b-256 2de186aa045b6c80d1bb39d4483cd8938f40813cfceb1a8fce93ef8a85944718

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bd99b2c1d90ca0eee7e5c2dc901df8072fa412cc396f96d578d9234aa861f10
MD5 d6ba757d240cb4f714b2bfafc4f0afe9
BLAKE2b-256 04e241328677b4fcc688119ce58c44bd0c5ae9e9153ab2843a2d9e29bb1e5734

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 518a225125a0155fe0dd788dcc902726b138946da93de63558907323b0690669
MD5 ad2bcfa5269b0516c0726300cdbab551
BLAKE2b-256 d6582314f5c92fd38b32e8211c6fe20ed664532093e506e33f294fb3238d49ef

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8cbd8ab407e762a91e6989b9c7b4660e4b8c65e3b0f6d12d1b53e2d3c1cbfa9
MD5 a1af1a8b8431f7f0d44c882c180f01fe
BLAKE2b-256 b0d7225a5bf6a08db500897588e829b248fe370e0e5279a121c17725610cde6a

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 031a7188fd69338467c2f54afbd89f91b44ea3687898dee602ecc495ace50521
MD5 07f1af99ac86698d5a0cc8c596d6a100
BLAKE2b-256 fd0bc5f8b267b99e936b6bf16f2853907fcae935a2c451b1baff8c306bc95b6c

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ef2130509e5ab557dcad7d8e6aa2d4b3f16571ac4e9c2759f291c78cce3da76
MD5 882abff31aa991c7737bdc6bd8a3c8f3
BLAKE2b-256 1f02830d6ccbd978532ef08fa0df327330d34288e79e571157a98aa9930d6404

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 384b80c3c31a06aa0f358d61148d0ae3e51e20a0e0cd24d970a0ebd89d994931
MD5 f897da4dce9a62cb0d4da1a7382333b8
BLAKE2b-256 ec107ea11f66f10dfe21a4b5225f67cf8a03fe31f3ff205b15fd749e237c2871

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff10f7032c1cd283e792e71ace8477be524eadc6159a0eb9a79056354496c950
MD5 6698e4bafaea3997ce777fe8f816ae1f
BLAKE2b-256 b6a3134f32f9351977e73cd246c06908dd32d100cbbb2a56224e5544cde4950a

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d27cbc3a2965671553ff0fa5fb6cfac0edd7bb65818c90600ea3852b39378995
MD5 2658428b5c13189331183bfffbf917f8
BLAKE2b-256 f555a3ac32f59f19583cd945c89bd54dc8fd2feeb5c4dd6aedcd22955438f9c3

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a86c42e1568f1b3d49a55ce1be5e821967770b64829352249f266f8f58af3a1f
MD5 17e5908cf02883a7c4ac76a1be141ce7
BLAKE2b-256 0f84a6908e99e95ede2fa9d151f10831d12bf3f04658643fae0d5e1bfce814d1

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec0503710480557482a8d1b14e248a4e76419b86f441fcf7e04e8033ba50dfac
MD5 db64d36649933edbbecbf2dc15c3dbb8
BLAKE2b-256 13b3b7ead93184cd3245fbdf59f542a8c28aa9a50c71ce1e8dd79f0e43a3134f

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 620568a3ae306c17723f1232ac4ee0cf07d96106559eb1ee2415363b4621a71c
MD5 48f30cd6b030ffb3f048162b6cfc59d2
BLAKE2b-256 257f329ee208eaae9e0bd07cf5654c5bda30c4acaee63d6d536d8caea4497a4c

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a4bc38a9d527440c811f32411ad5e1d597de9476c2d11db7f4c17be533ba493
MD5 8102eac91fe9a2873cb067efa75004dc
BLAKE2b-256 3dca64c355dca93a91aeeb88ba4dec41760155006bc1778d44da48b4dfec507b

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de3d66656f2d75b0064c364536b3a3931eb2921b48b29566e25dd776e4e2ddac
MD5 1f4e4af9641f748e5292c73da1fb2873
BLAKE2b-256 0f02bf87fec0ee62f51c91facbec4761e40ef619da60919718f0b86a4f2cb57d

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4bd5f97bf2f6f1f423e61515aa0d0d63459827c4bd20295951a55db63c8041d
MD5 02fc11c47423e135d3c9f5b566954e01
BLAKE2b-256 e9fd077e51f4d640b6390e4a18c829e7e6d2130de2f624d45c15f6c6431e4df7

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24a29837e93492be5fe3a6447fb3a22d86cfe87b036776e1632686de849893b8
MD5 307df8fe4d80619be4d444cc9bbd4e0c
BLAKE2b-256 179145c91a4e92c400b45c20c4ed09f2b28ac4213254a2afdc491d4f8ef2f48d

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abe2c4be394acce9b21d945335f5c6dec1c4b63cb5d0aaabdfdb122136f7318f
MD5 e743ae930d8ec3d6f840769a2903a8d1
BLAKE2b-256 182ca667d2097207ecab4a91c666d4cbd3effe375d55dea1074b8549205c169c

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08ded405185de3fe874726dc2ff17482812e3bd587550bf7464762a1d427005c
MD5 9297ec8bb2f0d39b7ee3a44dd4f62b02
BLAKE2b-256 659ce3b5c1591b509bf6358293e3739d1e4225f407738775a55f16df2e7b8960

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a192cb0e49ba3944684c8fd979869e446d14f4104eb770d0d6e41a7e89ae6846
MD5 fb8152d0231bc22bcad41863211d708b
BLAKE2b-256 a1ec84cd839d63691b27def362e59e7b244b76be1db598a6c84730f4cc1077aa

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf4196b069b36e4134af2213847ed9b2886776d370f40f7404bb06ae141d5100
MD5 5b0553ba7b1081c4b7d42e8c2b43a7fe
BLAKE2b-256 0795c4a1e30679ccaa82380a5fa0583ca4489742f0324145b4054c6e94c24bf3

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33604255e65dfd05d2983d19f413e362cfc9753e711d6c536d9925b2a750ff71
MD5 37138f2217a8cfd79962951536165ab5
BLAKE2b-256 dca21e4ec3bc484aad2aa205a6508eea9c22e9a0172dda4c7a444f7bf1481fee

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3368b264756ae73eb792e9ca76a0d3cb6ed8f5c56e47658380c9122ecab5d59f
MD5 e1e5361375b95fa0d975d7ed299fe5cf
BLAKE2b-256 4a250ef1b4d8758a087539841a224dd585618ba35e49345336af353d51b3e772

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 052958d561c0dadf3dffa861197657223f4cda6e0b82774d884ea742cf3b48d6
MD5 05e7697d692c9b1596ad297ee5651f36
BLAKE2b-256 1f997113f7b53294c7ab5205af57490802cadf73caa1d8fed355c8049b307b17

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60cc39c3613c6795656aa4a15c78c8ed8ff2064c22359add56a76a9188cf6e99
MD5 d09a7f437c79271e1c5c5766139c017b
BLAKE2b-256 21e571297cdd282d3e7a3cd98047ab97aae0c4728db62f69763ae9c66b8bb723

See more details on using hashes here.

File details

Details for the file naluacq-0.4.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d6b77c3a19634f7a382b2688ebbb28f1fbc55d5167d759091957cb9dc4302e8
MD5 9c83a4882ae9a4a359f81f049fc37bc1
BLAKE2b-256 80be6379d7a4285d206eac04d15ef30795cb9029876ae5613be1d3ddb1ed0130

See more details on using hashes here.

Supported by

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