Skip to main content

Library for opening Nalu Scientific data files

Reason this release was yanked:

Installation fail on windows.

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.9.tar.gz (45.5 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.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

naluacq-0.4.9-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (824.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

naluacq-0.4.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

naluacq-0.4.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (824.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

naluacq-0.4.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (747.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

naluacq-0.4.9-cp313-cp313-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.13Windows x86-64

naluacq-0.4.9-cp313-cp313-win32.whl (536.2 kB view details)

Uploaded CPython 3.13Windows x86

naluacq-0.4.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (772.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

naluacq-0.4.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (821.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

naluacq-0.4.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

naluacq-0.4.9-cp312-cp312-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.12Windows x86-64

naluacq-0.4.9-cp312-cp312-win32.whl (536.2 kB view details)

Uploaded CPython 3.12Windows x86

naluacq-0.4.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (772.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

naluacq-0.4.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (821.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

naluacq-0.4.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

naluacq-0.4.9-cp311-cp311-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.11Windows x86-64

naluacq-0.4.9-cp311-cp311-win32.whl (536.5 kB view details)

Uploaded CPython 3.11Windows x86

naluacq-0.4.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (772.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

naluacq-0.4.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (821.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

naluacq-0.4.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (747.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

naluacq-0.4.9-cp311-cp311-macosx_11_0_arm64.whl (687.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

naluacq-0.4.9-cp310-cp310-win_amd64.whl (564.8 kB view details)

Uploaded CPython 3.10Windows x86-64

naluacq-0.4.9-cp310-cp310-win32.whl (536.5 kB view details)

Uploaded CPython 3.10Windows x86

naluacq-0.4.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (772.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

naluacq-0.4.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (821.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

naluacq-0.4.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (747.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

naluacq-0.4.9-cp39-cp39-win_amd64.whl (565.3 kB view details)

Uploaded CPython 3.9Windows x86-64

naluacq-0.4.9-cp39-cp39-win32.whl (536.6 kB view details)

Uploaded CPython 3.9Windows x86

naluacq-0.4.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

naluacq-0.4.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (822.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

naluacq-0.4.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

naluacq-0.4.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

naluacq-0.4.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (821.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

naluacq-0.4.9-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.9.tar.gz.

File metadata

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

File hashes

Hashes for naluacq-0.4.9.tar.gz
Algorithm Hash digest
SHA256 97388f1258b828d2b03363c72ea697f7b89a2f0620c31267ab995c1020969b93
MD5 d7da70f1241ee1955240b5d4de91f877
BLAKE2b-256 2a5ad24b3d78c5f0ac37affbff0650b97fe1d440511fa6d6249c4bf53255590f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3648445a34220070e467e0cb1d46bd546fd544d645e710690b761b0199282b66
MD5 39b42dea7d75c73b6e98086dc8de461a
BLAKE2b-256 7cea9403fa92271e530a9bb58c6337a3771515ae3bb1c7200a0e8a2f8e17e9e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aef48f31fbb410f78ed6dc8efe5d9ff916c782cdaa7c4e086218c890783d2397
MD5 f53a1ee50c00c1757fdd6c08e389ff45
BLAKE2b-256 bbd16d5b2810ed9078ef6c3ab60199e8ac3bf162b952ae7820f1ad73e42dfac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c268493a4ca02fdfeb5ac8fa17b4ff1b10ad44629164637ea83a5ac1a384ad4
MD5 6bc38eae76a9b3e81b26b0b069846157
BLAKE2b-256 3c4d1fdaf530d2a2cc62a08db7bcc8c604854bfcfeaa7a851e7bf0328069bc4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12c585368190f3223423421e244aa380a54e4713efd22e5b86fd997a0a7feb13
MD5 48721dce74647a139ea74c850a1a2e88
BLAKE2b-256 c55fd460d3e34396cc08af49e23157e8345341b9c68c62b8fe5d64b260264661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a657a81032e8a0fb6161e939544208c6102db7393510eb29cf5bc1c071528ce0
MD5 4d3f3c8a401a78677836c7bfe6497d1f
BLAKE2b-256 3df496b23ab45cf6770d6d7444c4d340c9c73899ef1cad54909c3970900ac915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9dd70e033feb2c9c372867b257454282533f4c747ef8c6cc6f513e484d168e1
MD5 70887546ed59ef294aced83bf217fdd9
BLAKE2b-256 7daa36e0eb29b93a7e8cb958b2cc37a25293c5693de2194b8102ae981bbfbdfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8b3c0868a6da7f023580820286e07e73e940d9069410287daf3d0f5b87b323a
MD5 0a7f3476eb82186308fe077b46d751f9
BLAKE2b-256 cee29edb18efc4da40dc4ad349bc0455085219b64f3324ca4a4cf9dfd9382dc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 103dc04bdf011643197a2148a5fe34972e02112912dd3b569f4991bfd86fe3fc
MD5 b9a03829d2a963245c91d722e0d6928f
BLAKE2b-256 ab2c7be6623c6ed157f1b5c104bc9d02a098941ae186cb0ffbcb90c1bd7b1eaa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for naluacq-0.4.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6a87d23503f32d1a52069d483205cd485de5343a7fb4447d945793404b4b1479
MD5 6ab8c064b40cd74cd8a9e79f35a97636
BLAKE2b-256 4a7399fcac9606d6f55bfb5e5d0ab2676b833b18090a4e92f2bece9783e0eb09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: naluacq-0.4.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 536.2 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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d789baed34b0933832d8c6732fd36b37fdd928912786e1859dd9fd2a6692a0b0
MD5 1e613800267bd84c10126bf2aacff2a6
BLAKE2b-256 2acea1cc89f1db977a9c078be331bf2919ce731f71735553de6cbd7466206672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a20d81bb63da475dc013765cc7184d074c2b638c8e1a4f15e580a974b6117218
MD5 281d4ef2b0dd52c0dea109c735a524f8
BLAKE2b-256 c9b626f0ee16318b4faa11ce0930bae8e03a9a0acd51180a4440b78e75d249a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0364fdda780bf9ded8daa681d14fbedae7258a71b5102002d9cd52683880cd69
MD5 9a1536b4a4764b82f14349a3e497ca0d
BLAKE2b-256 b8a98180c514231098ffbacb6be76c320f2ee3e1102d32220b4fe27844acd496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6982ef1dbdae23b4a46a72a5317df458b1173f39cfb26475aac0b6eced55b3f6
MD5 4d667bda8a4202763b1445f2a9e5675b
BLAKE2b-256 551ea910689ed2b41194e1bde723a05d142f9f348f43e6d177b77cb2dc48eefa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c4155845883e754c52cc1603287423a4eb1b760df6e9dbea08dc8a027c3f507
MD5 f5ede937d7d1751142cd12bcc36bff01
BLAKE2b-256 588935acd6aa3cb67e85c0a729f3ef990de711b8b06cd7e18472f73c32419de0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for naluacq-0.4.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f932bd660bfba51397efceb3304d08d694e504f1e805856acc9215b0d11393d3
MD5 cc1f4eeca6399d3df45b84df3448bbcb
BLAKE2b-256 ec506495ff102bed16d34afccb9c08f6cc1771efc683f26ed02811f4827b06d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: naluacq-0.4.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 536.2 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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9f10434b60fd4ad241050c66a673ec229349680a2af00a712a9867693960feb1
MD5 5b52c70965fb6b6ba953796c1972b6bc
BLAKE2b-256 817c4d83b554bcbd010a632c426917b3447e8d863239dc0a978288d13be06f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67c860c1c859f3dec8f306916af965a1bf8751ce0aef94fe14d65e60d855b8bd
MD5 9b4f38b49ad172261bc37901ae410447
BLAKE2b-256 763dff60fd6f49c6f78f1dfc2e16e79cd7eca5d2c8f16af7c78452b937d8964b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1400908ea8b2eeb61369fd196c0e6cbc6890429e95ab826c6b889e4a83494ad9
MD5 df452f2411d2dc583214a58e89ad4d64
BLAKE2b-256 aba9fddca3159b6571369458cb69cfb52f60d0ac36a69fe66b5e552d41df500c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c86bf110b1c7b641ad271945c79f4e361737d69a759378175dccf7f7d84e570
MD5 b40ab83552632e0fd14ec3616478bfd7
BLAKE2b-256 f6276ff378973115e5b7fee3b0bb28336fab35751481154e31bf469cadf438ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3ac79f2d2aab256ba85b5211161b7249a171f255207dc75a1ba9b01ff9388b9
MD5 b54647956f1e6eb9d17476a79487c8ac
BLAKE2b-256 14f6b27d4f760fdd7211f0df868fcd9b811374611c59dbff2205c537ae95f137

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for naluacq-0.4.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2406755dcad64429730f022ee20c76711851d8f9b3ec8c8d71c6ec5ebc10c86e
MD5 cc73547b006253760c5337769b10e205
BLAKE2b-256 54884b1dd065830f9023663dae63f643acf91451c11fdfd00c2aa9339f84fb8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: naluacq-0.4.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 536.5 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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 71296627791360a966e913b8a8dbb746b48be0b38e2d8a03a39872536b5f1e67
MD5 0a27b6c3d95e07f20a162c98cb289062
BLAKE2b-256 46566a493ac5f17179813d6a7fcfa4cdc064bfb04874a9768e434f1a4afa2696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 677ca722a82cc7c3d909d972e1f4775e0c729a58e64b6f0aeff80626ac6058a9
MD5 47774ee1ce0dbaa466cc6854227e32dd
BLAKE2b-256 045ca195fade6ecd38540eea92afe263502c4d0291531b7af104ee17436bebc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3dee073cc8812d01401279ff219b7bf405919fd0c38d64075329f44c3e92249
MD5 15d5f5ff9aea65afccbf58c636590e67
BLAKE2b-256 bcfe160887f41fbb7459af2858f7521acfae09fec8be98652da28488344a6d61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4e280baa86d0f89d8653c97de2601159176469145d617c1a76242139a7cd75a
MD5 2d6febc4109a1bc4631cdab216ff3f4e
BLAKE2b-256 9e90ff6fa1c6ac7954e0d694f30b474776f4225a7592eb0fdac2c277b3e4389e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98ec86bed22e6135d70dd99029624684f17d0d7f78aa4ef56e5d4ff6ee912aca
MD5 06331fde92e1ce36d627f35d9da2462e
BLAKE2b-256 00c0161581dc91524e506e3b7cc3b8e27b74b66fdf0d054766dc9fca4444865c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for naluacq-0.4.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b9e592eed1019cb61488220796ee60981336f8459ad88e2d50eb80083c646ee6
MD5 476c38f82ce8d33474c00dba42410dca
BLAKE2b-256 8f564c058bf5d5d03179045f2869a97ddb92460d117d830b1880f4baf8cc713e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: naluacq-0.4.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 536.5 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.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 beb1dd7826a0171e6330acb9354e1a520fc0611c0fd712d48b635ac9383ec043
MD5 0ad9bcd8178b66f2da6adb32c26a7993
BLAKE2b-256 8034d37ecb88d5e402bab14e0035374f7a94de00d6cb15988324639ae7af294d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 358d87cf62fa625faa396119366f89ffeabc3793c84df467fa95f300b1cf164b
MD5 52190315494b5ee611212b25a3a561ee
BLAKE2b-256 33b246024a9f77f8fe8ebb4bf62cec7e2ea30f114f556dfdce413fe9a157f357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa8f902964d9636d7168f66108b959e03f3a90da127de20faed001f4413018d7
MD5 4d8af9661172f51bfea0a76d000c4b4d
BLAKE2b-256 b58df35c36d5feefedef5cc9478e4c79ed55f53eaf50a0f7623ebf38113909bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e088459e05849cc17f864087d617fcbefd096fa49fc9daff1aaddff1eab420c
MD5 406cea8f5cf9f51c56b8e273178ad853
BLAKE2b-256 1af8a77cf26a780879c7ded6335a615f9c6fe77ba1f2d3a75ccbd4143ed2cb65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: naluacq-0.4.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 565.3 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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 10b9a2738fc01a0fcecd22bc0666555e8ccfaba28833756d9aaecf6d8560fc8b
MD5 3011cb5887fd3ed0262b72d071cb372c
BLAKE2b-256 a113ceefac662d503e1a4559a3535fb90b85ee63be7c87ffe6313f8857c533e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: naluacq-0.4.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 536.6 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.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d5a04daae45d7fc4d362f352de05d3f8e7a69d00a42414ba6f48b09d36e7e009
MD5 da315855aca9167dbd3ee16347bc2cbe
BLAKE2b-256 d251dd6011af96841a47f44266afca047bb16c7a51e0673bfd4b6c454cb94dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9088da8513f43426ea23f7656d775ad4347c549cf6a87add6c8c226c837aaef5
MD5 c3c63aa84e8f3e0820a884bcb7ec2840
BLAKE2b-256 97f804fb7cd35089ce0c922d4fb4f70f49596e246208fb54d66b6b9fe0a951ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7441a32099d267cae71f2a15b69af047011ff29edcec47aaf1dd03611289a43
MD5 e932613073aa9db7d2db5adcfa308cf6
BLAKE2b-256 bcf5ddfcf58ad041233e9a504f51bcd55e6d95083f97035c5c24d32706693c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eb272cf99395348791f917935420696d686a7d69d8496e2ab0c0bc4abf7ed84
MD5 1dc8c22fbfffe91bbd3d42545dd59247
BLAKE2b-256 c5cd4b5587dc0cae0d83ecf4bc17f6402f198f5e5a3e4ee914feb1d28df4a6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab18ccc81796f82f0b92b4617952b82d3da32fdb2a7e877ce7634579ae6e6584
MD5 fdebac894cb533b5c152fabcee8af0fb
BLAKE2b-256 11a8421740b1f217bbe3d26823b01e2029c84b23e7b9d84608857cd472c23383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26d28ade42624d73c05b470459c5a64dc3d67daeda9b5f0b8e065f287897257f
MD5 89c21b55e81f96fda7a68cf86ff478ce
BLAKE2b-256 157cb1cdac3421061cc3ba1e6ee130be6b65ce52d55a88cedb896c2c77769655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for naluacq-0.4.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aba23c5753d9863ae3e87ec78bbda34d11fa26e6e7694bf9621015e248650d3b
MD5 a11c684d87c2f2b35d2d2796fae00e80
BLAKE2b-256 9219a869bb44a150366010268420d6117250b17927fe30dce6e228379b76ebd1

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