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.10.tar.gz (45.6 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.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

naluacq-0.4.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (824.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

naluacq-0.4.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (824.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (747.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.10-cp313-cp313-win_amd64.whl (567.8 kB view details)

Uploaded CPython 3.13Windows x86-64

naluacq-0.4.10-cp313-cp313-win32.whl (536.5 kB view details)

Uploaded CPython 3.13Windows x86

naluacq-0.4.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

naluacq-0.4.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (822.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

naluacq-0.4.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

naluacq-0.4.10-cp313-cp313-macosx_11_0_arm64.whl (687.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

naluacq-0.4.10-cp312-cp312-win_amd64.whl (567.8 kB view details)

Uploaded CPython 3.12Windows x86-64

naluacq-0.4.10-cp312-cp312-win32.whl (536.5 kB view details)

Uploaded CPython 3.12Windows x86

naluacq-0.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

naluacq-0.4.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (822.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

naluacq-0.4.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

naluacq-0.4.10-cp312-cp312-macosx_11_0_arm64.whl (687.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

naluacq-0.4.10-cp311-cp311-win_amd64.whl (567.8 kB view details)

Uploaded CPython 3.11Windows x86-64

naluacq-0.4.10-cp311-cp311-win32.whl (536.7 kB view details)

Uploaded CPython 3.11Windows x86

naluacq-0.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

naluacq-0.4.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (822.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

naluacq-0.4.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

naluacq-0.4.10-cp311-cp311-macosx_11_0_arm64.whl (687.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

naluacq-0.4.10-cp310-cp310-win_amd64.whl (567.8 kB view details)

Uploaded CPython 3.10Windows x86-64

naluacq-0.4.10-cp310-cp310-win32.whl (536.7 kB view details)

Uploaded CPython 3.10Windows x86

naluacq-0.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

naluacq-0.4.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (822.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

naluacq-0.4.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

naluacq-0.4.10-cp39-cp39-win_amd64.whl (568.5 kB view details)

Uploaded CPython 3.9Windows x86-64

naluacq-0.4.10-cp39-cp39-win32.whl (536.9 kB view details)

Uploaded CPython 3.9Windows x86

naluacq-0.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (772.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

naluacq-0.4.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (822.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

naluacq-0.4.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

naluacq-0.4.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

naluacq-0.4.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (822.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

naluacq-0.4.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for naluacq-0.4.10.tar.gz
Algorithm Hash digest
SHA256 0410427cb735d740395db55af74ebcb73f5dc7e596afa1fd560b9adaf821441e
MD5 1f87229268bfbb50cc624a2b57842b48
BLAKE2b-256 bc155d4bd8f5532a87e37a49b0b501c93dbf42a6656b0cbad618a45f179fcab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c69be51c0723298860d159437dc58e23ba76aadceb075a7d4b5f8ed9b4e7564
MD5 f068da2ce51a3fc0aee5b560fa8c87bc
BLAKE2b-256 0ffbb834ab1c65fbe1cf76acb47444b4c247e2f435c56ca8333a215f17353a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9a2470443c894d1d3a829a9da9b02d0be7cf5d60e7f1db5c74907ea5ed49624
MD5 26b41d62e070ffb281ea0eaaaa47da0b
BLAKE2b-256 c435151e48746c3e595babd55f1c3c64305b9d710ef6b6017466654b920cd8fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06a8231b5bf39954940478cf42e8c2982a58b8413a867f8e2fc98de30864ab55
MD5 8468e68c08d415a5cc2d29c168aa727c
BLAKE2b-256 296ff87568aa5a73d4c34a524793fdf34765b945842052dab5e523f46f3728a3

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 601ede3fcfd8242f00da281d334c8a1fe818f57d35864d7cf25d3a5eed056c62
MD5 1eda6ef6920c8c79a82f3ad01e72c2b9
BLAKE2b-256 637d38599b2669b0fb7209be650b4d5bda58da709951f1e312dec18ebad2169d

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f744b53dfb4c87a47aebd7f883011d142cb6c3047eb785a21f71bbf39f8f20d3
MD5 102fcb186a5d116803a296a508c00f5e
BLAKE2b-256 fa08bc51d2ded83277ed0949b81320fe747bc7450efc0115fbd09ab14123e341

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2865ee0e4e3f48382001ac010c16c94879d582a2e26ff831d85a67558278ed52
MD5 f42bb76a768e81af7aad8411d30a7ca0
BLAKE2b-256 04b719dc41b70e2ff1bf13da66b5ee92966cc06f41e680b5b80570c51025f8a0

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5eda5459d658dc7a6acaebc9d180fdaa34d0d27664f78657b0b237f4a98bdd11
MD5 c3011b76e5ecfd0c58a3c5e096e424a3
BLAKE2b-256 f55b716beacb654b497be021dab9903047fb3a3d69a0593556c2ed7a4d2a26f6

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for naluacq-0.4.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b51800554c2c90bf09b3293159287f79394ff1f02907228d16067b42816e340f
MD5 734ba3e094b3fd7cb7f536ab37c74e99
BLAKE2b-256 9c061c7d065445f517770615cb044fb6f924995a275757d365efef55304c93e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b6ec2c61915c07f4e9d9848dbb02052782ac11c0364cd6475bb34de5bde814b5
MD5 c9df6a11ee9979c407b00232284bb90d
BLAKE2b-256 dda1a845a61294b5439ea36b846cc18bf3d2dfc59f4d6dac69e1fadfad1ff678

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-cp313-cp313-win32.whl.

File metadata

  • Download URL: naluacq-0.4.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 536.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for naluacq-0.4.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6bc6ba30013c3bcc5ccf00ecdce0f37fb25f3da2d836d5bf64a3620104e23ad6
MD5 7e5c70a17a9944cd6499c35937abd594
BLAKE2b-256 69fd6c872a3e2e24f1549068b117db0646334129a9ee4f7ea8a10d8ff147535c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbb196e808719ebadf0a28154630481a56f57c004b0fea180591a239862512ff
MD5 195d3cd7a3187686131e34e3dbaec6da
BLAKE2b-256 7f47348651d4818a5ef19b00e0fee1560c5625acaeb8d7074780beb84d5d4f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d30e2c3b978eb510761a79fb6c84494c23713d10bd033a766bd13329c328c838
MD5 7559d6fc545397b81432c3005a7bd45c
BLAKE2b-256 515640bdf98e9f92fa0e4cfb5e367045042d044dec5305b4be613ded43a121ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5953ea9b0bbad5c4fa68b7cbbe59a75934288691cf5c5dfc30204a1ce67f068
MD5 65d3bc06f2ffd0575458ae7fa6ada328
BLAKE2b-256 5fdcb99f82647ffa5bd2c32e2a7aaaacf11c8f098bc455dc32dac36bd081ebb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6e77b00735c2bfba07f719ec83744e3ffa3475c0fe245f319a35ada7a4e73f6
MD5 888c1cbaa3d579ef5466914f749ccacd
BLAKE2b-256 6d0bde14836ef1159b860cafeed8d3c9af5efc56ef6b5e2bb307f8b69951317e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 683437cece82f48470be46dd912fc0393d43aaecef9e65eb216e85bfdacc07b7
MD5 b9be1f40d24fed7203e079d536cc5390
BLAKE2b-256 0fa1555d329c1f90fc4421bac32301353b581482a31015f4b520204221f914b0

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-cp312-cp312-win32.whl.

File metadata

  • Download URL: naluacq-0.4.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 536.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for naluacq-0.4.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 00350605bc9bd1fc070dcce4c6d0b5cad4ee4dce5dd49e2e0c187d65630fed12
MD5 b1242e47e0e867999d93baf71f2a2a8f
BLAKE2b-256 61d1067e696a000e879e499ccb8f3db83f58bb932d0db0286834487bdebbc942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1f478f3c26ea144768b1736e94598edea95b51a86d7dacb065b290593c689d6
MD5 ab4cf623c844c435a2e97c97eb75eeb7
BLAKE2b-256 f748658b9a3366432028c161411e74750ccda24b263c1fbdb3d70c1687c850d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd7c095110fed37d583f10ac883a81a141a51c193d385bebbeb626460615c42e
MD5 8556fc881b982e02c1565cfb877ea9cd
BLAKE2b-256 06ec7afb1509c5aaead973941b58b6cdcd083dccad8d6a723f9e1a0731129c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6578dbb0b19541560bedec90aabf0f26ef485ec5874362b1a47b1a7d7f1c325
MD5 52a779905e165c4d78dd55ad27bc82c3
BLAKE2b-256 a6ff19286818347983562b797f3a871bf9af1bb4ab1aaa29b38b9807b6b93a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95acac905680c06cd5b823ba650034902640bffebb204d398f71becc1de5a398
MD5 fd816b30173df5d24a864d5e4b2c47d7
BLAKE2b-256 7d7d79d7692b4850dc316e2eb0ea5181075534d2419f97422a2fa857e7145769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c4fabc3db9521b7b06bc006eea9a16f8a2b2e83d33667b2df7240609b221215
MD5 5ffa4fd466e67e9f09f245b0145a6822
BLAKE2b-256 f2f719f9ff3da9d917173404ea8dfa5d919ae1591930bf3d73590269e1f391b5

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-cp311-cp311-win32.whl.

File metadata

  • Download URL: naluacq-0.4.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 536.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for naluacq-0.4.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 34aef578819e5c072681228e52c22713fb0a1982a3176ac1db296899d6bd45c7
MD5 69c4703f20a38aad60ff337ea0ad256c
BLAKE2b-256 f9700bb106767c7b6d92fa37f9ad3ba0ce6311918e8a636d7ff3df9fbac83a95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d25d86bd43c336c4d95866737df2d8e9751a20b8c0f70c19ff15dfefbfdecb7
MD5 7ca23a07745e1c82259f3f3b994543ea
BLAKE2b-256 861422d27f72500514a0ebc6eb9a8184a7633747df13d4e98eaff8860d5f92fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5884e0974fdd6b03d795863765efe68db4361b02501b1bb5db38c677534fb174
MD5 5fdc3a2a39e93f3baaf467c854dbafae
BLAKE2b-256 408ccd581365dacdffd0c055219cc91177e03c48684aa9e38e6f0b56d05a58a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edd57634f417d6dcfaaf64059f28a11150e051ed9f1ed1b791a692ecfdb5059e
MD5 ef7257be4f7b8c5ef39043d7eaa4b138
BLAKE2b-256 6d837158e0cbd772a29e5e72f4d9667f2d8ffb36e2f45717ef313ab3a46352e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cde210405999f59526369ad5b9e5a41bbf93e017c31c0a1f4a27daf312648e5
MD5 47265a14bbedfb199fc7eb035560d1a4
BLAKE2b-256 8b7b09794d49ef381b7e9da0890b86b48e5d671f09b8aaaff02769ed7d368307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da3a843e919ae4aeba7936a133730f729a69eada362dde0b708d93a368e3693a
MD5 5eaac68f6bc56e24e6eb2e72c271f29d
BLAKE2b-256 dff8d203c0f0d511dc65533616863034815d199ba9d06bbfcdba0790fbdd0366

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-cp310-cp310-win32.whl.

File metadata

  • Download URL: naluacq-0.4.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 536.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for naluacq-0.4.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 824694b997d3d8a1ef173d239f98361924830003e75e5bdf91142729a8c385f9
MD5 d5f128712a3814ce679ea36d58f6314b
BLAKE2b-256 540941aeea17e87fceb224b8082a0ffb2b3b28305d0c9dbab1f9c478a6bd84cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bf3e0709bd1aab1b870f00ec663511336befbbfea8bd452af16c5690ae51a06
MD5 9eda4f4f059437486175ab6d304cfdb3
BLAKE2b-256 83a691d3c4577f9f7e7edbb9db8e219d161b444b530385d7a6c3fd619c1e628c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2286b51c6cdeb8ff35c018e518889ff886f95b0b1ae99181bae7195453bbb809
MD5 da1ff6617e5d8078ecc07ee3ca6709df
BLAKE2b-256 f54e5d2f8383866e15f64994de3d04602aa02d4320b69a0ec91e8d1137a766aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 507fb279c927f6cc9a43bccf19195f8bc4f094193ca4b26ac0a130374b26be12
MD5 d82e20d9f0b0c3ca5b10b187a5d9fd75
BLAKE2b-256 f6b3c2c40b29a67057962b5f61618586c099713f353cd9d4da3b4f920ab11546

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: naluacq-0.4.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 568.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for naluacq-0.4.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e86c128f72e98fe699beffd82ae215909f9340643225a57f1534cf61dbb94c4c
MD5 6ac5ac16dac1c9d723f402b90e2832fa
BLAKE2b-256 076dbff6030210945790fd68ef31585961799478fe7026123e406859939c1351

See more details on using hashes here.

File details

Details for the file naluacq-0.4.10-cp39-cp39-win32.whl.

File metadata

  • Download URL: naluacq-0.4.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 536.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for naluacq-0.4.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 67f2208f9e6cdb433e8cefd34a590d9dba4de4a9a62c475d9ef18ab808a4777f
MD5 1562035f709b048c4daf88eff8c55520
BLAKE2b-256 8a3d841ed74d05100ce39750fd414c839765338d5e211780cc191b7c4d230a3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b6fe8a67bf1b64f80429467ee50ff4a8b9b677e6623c25ba1a1a24c22654da4
MD5 8c706795e487b17965e7047f4e8f9119
BLAKE2b-256 d38c01358324e191db107444c0fa4bd272a2583845a6bc501d5e16af8eb7a87b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e19d7b1d609191ba8ffbc6ab137d06f3687c536370d4168858ff8bac4115a9eb
MD5 f2d5798ea2048e104cbc314278dee478
BLAKE2b-256 8645702056854a42db484b6e5e275146ade4336276bee412849d061226c7f591

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d663544f67c19a34a898bde9f1c7a5c0d5a0c339d7d04f12fce1237dbc04aff
MD5 e1c208d52738cc8943aadbd33725f2f0
BLAKE2b-256 a723acc57a8eb69e73ea364f7393828ec823e2de2d5c5d11a67fa5c3439f854e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da66b71fb0e6c04bb0d0295ede9a9406921f0e9f5e81c7279a200dae41764c0b
MD5 b9ecc63ee35afdd0c962c38838c6117b
BLAKE2b-256 c615e7d74cc0b14c433554293dabd379a951896637c5da8c66606d1c311cccb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 014b2f9ed8cbad905386e02c8020d88eed2543da316ec66b4892ac198a5f0bee
MD5 ee8a1076e4e7b17c2eb2bea4a1d70f04
BLAKE2b-256 a779056714ed27a1374e2764a4a9de82a1e6c8685233fe9548333d279304fb99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 393029193634ec4d124d0ceecbb5a60fa01096c018d10343ad4dbe7de42d2cbb
MD5 9fafdcb12daf0d8a8fb54b4866e84f3f
BLAKE2b-256 05e2b15d6972c5267658d9048fa6c7c401c82351f5973ae3204476f5f35f51ef

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