#npy #array #structured #reading #numpy #deserialize #npyz

macro npyz-derive

#[derive(...)]s for reading structured arrays in NPY files

3 releases (breaking)

0.7.0 Aug 27, 2022
0.6.0 Jul 6, 2021
0.5.0 Jul 2, 2021

#7 in #npy

Download history 51/week @ 2023-12-04 164/week @ 2023-12-11 160/week @ 2023-12-18 29/week @ 2024-01-01 159/week @ 2024-01-08 257/week @ 2024-01-15 57/week @ 2024-01-22 22/week @ 2024-01-29 54/week @ 2024-02-05 43/week @ 2024-02-12 29/week @ 2024-02-19 80/week @ 2024-02-26 49/week @ 2024-03-04 27/week @ 2024-03-11 46/week @ 2024-03-18

202 downloads per month
Used in npyz

MIT license

11KB
198 lines

npyz

crates.io version Documentation Build Status

Numpy format (*.npy) serialization and deserialization.

NPY is a simple binary data format. It stores the type, shape and endianness information in a header, which is followed by a flat binary data field. This crate offers a simple, mostly type-safe way to read and write *.npy files. Files are handled using iterators, so they don't need to fit in memory.

npyz is a fork and successor of the seemingly-dead npy.

API Documentation on docs.rs

Usage

[dependencies]
npyz = "0.8"

You also may be interested in enabling some features:

[dependencies]
npyz = {version = "0.8", features = ["derive", "complex", "npz", "arrayvec", "half"]}

Data can now be read from a *.npy file:

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let bytes = std::fs::read("test-data/plain.npy")?;

    // Note: In addition to byte slices, this accepts any io::Read
    let npy = npyz::NpyFile::new(&bytes[..])?;
    for number in npy.data::<f64>()? {
        let number = number?;
        eprintln!("{}", number);
    }
    Ok(())
}

For further examples and information on:

  • Reading npy files,
  • Writing npy files,
  • Working with structured arrays,
  • Interop with the ndarray crate,
  • NPZ files and scipy sparse matrices,

please see the documentation on the root module.

Relation to similar crates

The name npyz is actually an abbreviation. Here is the full name of the crate:

npy plus npz support, and a lot of other features that are frankly a lot more important than npz—not to mention the fact that npz support isn't even actually included in the first release—but I had to call it something, okay

To clarify, npyz is a fork of Pavel Potoček's npy crate. The original npy supported structured arrays with derives, but had many, many limitations.

Compared to npy, npyz has:

  • Support for multidimensional arrays.
  • Support for big endian files.
  • Support for Complex, strings and bytestrings.
  • A more versatile reading API based on std::io::Read, so you can read directly from e.g. a zip::read::ZipFile. The original API required a &[u8], with the expectation that a user can use a memmap for large files.
  • Writing APIs based on std::io::Write.

Originally, nippy npyz was a place for me to protype new features with reckless abandon before finally making a PR to npy, but even my first few foundational PRs have yet to be merged upstream. I believe Pavel has a good head on their shoulders and a great attention to detail, and I appreciated their initial response on my PRs, but nearly two years have passed since the last time I have heard from them. Therefore, I've decided to go forward and publish the fork.

License

npyz is Copyright 2021 Michael Lamparski, and provided under the terms of the MIT License.

npyz is based off of npy. npy is Copyright 2018 Pavel Potoček, which was provided under the terms of the MIT License.


lib.rs:

Derive npyz's traits for structured arrays.

Using this crate, it is enough to #[derive(npyz::Serialize, npyz::Deserialize)] on a struct to be able to serialize and deserialize it. All of the fields must implement Serialize and Deserialize respectively.

Dependencies

~1.5MB
~33K SLoC