Releases: constantinpape/z5
Releases · constantinpape/z5
0.5.3
More changes for windows
0.5.2: Merge pull request #69 from constantinpape/win3
Add some windows support
0.5
Pre-release to include some important features of the upcoming 1.0 release:
Dataset API is now closer to h5py:
- creation with data:
ds.create_dataset('test', data=np.ones(10, 10))
- implemented
require_dataset
andrequire_group
, which create a dataset / group only if it does not exist and otherwise check the existing object for compatability
Simple multi-threaded I/O:
- Read and write can now be run multi-threaded by setting
ds.n_threads = number_of_threads
. Default is single-threaded.
Empty chunks:
- Empty chunks (i.e. chunks only containing fill value) will not be written to file and existing chunks will be over-written; i.e. removed.