ndarray-npy
This crate provides support for reading/writing ndarray's ArrayBase type
from/to .npy and .npz files. See the
documentation for more information.
This crate is a work-in-progress. It currently supports only a subset of
.npy header descriptors and supports only primitive numeric types as the
array element type. You can implement ReadableElement and WritableElement
for your own types, but the next breaking release of this library will probably
change those traits.
Future plans include support for:
- Memory-mapped files.
- More element types (e.g. structs). If you need support for structs before
this is implemented in
ndarray-npy, check out thenpycrate. - Possibly merging this with the
npycrate.
Using with Cargo
To use with the default features:
[]
= "0.2"
The default feature set includes the compressed_npz_default feature, which
enables support for uncompresssed and compressed .npz files with the default
compression backend. This requires a dependency on the zip crate and
flate2 crate.
To use without the default features:
[]
= { = "0.2", = false }
With default-features = false, ndarray-npy provides support only for .npy
files, not .npz files. If you want .npz file support, you can select
additional features:
npzenables support for uncompressed.npzfiles. This requires a dependency on thezipcrate.compressed_npzenables support for uncompressed and compressed.npzfiles without selecting aflate2backend. This requires a dependency on thezipcrate andflate2crate. If you usedefault-features = falseand enable thecompressed_npzfeature, you must select aflate2backend (see example below).
For example, you can use just the npz feature:
[]
= "0.2"
= false
= ["npz"]
You can use the compressed_npz feature with a non-default flate2 backend.
Note that the version of flate2 must match the version of flate2 used by
the zip crate for this to work. This example shows selecting the zlib
backend:
[]
= "0.2"
= false
= ["compressed_npz"]
[]
= "1.0"
= false
= ["zlib"]
Library authors
Library authors should specify their dependency on ndarray-npy like this:
[]
= "0.2"
= false
= [FEATURES_LIST_HERE]
where the features list is one of the following:
[]if your crate does not depend on.npzfile support["npz"]if your crate depends on.npzfile support but not compression["compressed_npz"]if your crate depends on.npzfile support with compression
Ideally, do not include a required dependency on the default feature set or
the compressed_npz_default feature, so that the user can select their desired
flate2 backend.
If your crate depends on the compressed_npz feature, it may be a good idea to
simplify use with the following:
[]
= ["ndarray-npy/compressed_npz_default"]
so that the user does not have to manually select a flate2 backend if they
use your crate's default feature set. This still enables the user to select a
backend if they use default-features = false with your crate.
Releases
-
0.2.0 (not yet released)
- Updated to
zip0.4. - Made the compression backend for compressed
.npzfiles user-selectable. - Reworked how feature selection works. This should only affect you if you
use
default-features = false, features = ["compressed_npz"].
- Updated to
-
0.1.1
- Improved crate documentation (no functional changes).
-
0.1.0
- Initial release.
Contributing
Please feel free to create issues and submit PRs. PRs adding more tests would be especially appreciated.
License
Copyright 2018 Jim Turner
Licensed under the Apache License, Version 2.0, or the MIT license, at your option. You may not use this project except in compliance with those terms.