Lightweight C++ and Python library for reading and writing zarr and n5 files
Project description
z5 / z5py
The new z5 / z5py v3 release adds support for zarr v3 format and s3. It removes the xtensor dependency and is now available via PyPI, in addition to conda-forge.
C++ library (z5) with python bindings (z5py) for zarr and n5 file formats.
This library supports:
- Zarr format v2 and v3.
- The n5 format.
- Access to zarr files on the filesystem and S3 object storage; n5 is only supported on the file system.
Support for the following compression codecs:
Installation
Conda
Conda packages for the relevant systems and python versions are hosted on conda-forge:
$ conda install -c conda-forge z5py
Pip
Wheels are published on PyPI:
$ pip install z5py
The PyPI wheels are built with all compression codecs but without the S3 backend
(z5py.S3File will raise "z5 was not compiled with s3 support"). For S3 support, install
via conda or build from source with -DWITH_S3=ON.
From Source
The easiest way to build the library from source is using a conda-environment with all necessary dependencies.
You can find the conda environment files for build environments in .environments/unix
To set up the conda environment and install the package on unix:
$ conda env create -f environments/unix/z5-dev.yaml
$ conda activate z5-dev
$ mkdir bld
$ cd bld
$ cmake -DWITH_ZLIB=ON -DWITH_BZIP2=ON -DCMAKE_INSTALL_PREFIX=/path/to/install ..
$ make install
Note that in the CMakeLists.txt, we try to infer the active conda-environment automatically.
If this fails, you can set it manually via -DCMAKE_PREFIX_PATH=/path/to/conda-env.
To specify where to install the package, set:
CMAKE_INSTALL_PREFIX: where to install the C++ headersPYTHON_MODULE_INSTALL_DIR: where to install the python package (set tosite-packagesof active conda env by default)
If you want to include z5 in another C++ project, note that the library itself is header-only. However, you need to link against the compression codecs that you use.
If you don't want to use conda for dependency management, the following dependencies are necessary:
- nlohmann_json
- nanobind (only for python bindings)
- numpy (only for python bindings)
Examples / Usage
Python
The Python API is very similar to h5py.
Some differences are:
- The constructor of
Filetakes the boolean argumentuse_zarr_format, which determines whether the zarr or N5 format is used (if set toNone, an attempt is made to automatically infer the format). - There is no need to close
File, hence thewithblock isn't necessary (but supported). - Linked datasets (
my_file['new_ds'] = my_file['old_ds']) are not supported - Broadcasting is only supported for scalars in
Dataset.__setitem__ - Arbitrary leading and trailing singleton dimensions can be added/removed/rolled through in
Dataset.__setitem__ - Compatibility of exception handling is a goal, but not necessarily guaranteed.
- Because zarr/N5 are usually used with large data,
z5pycompresses blocks by default whereh5pydoes not. The default compressors are- zarr:
"blosc" - n5:
"gzip"
- zarr:
Some examples:
import z5py
import numpy as np
# create a file and a dataset
f = z5py.File('array.zr', use_zarr_format=True)
ds = f.create_dataset('data', shape=(1000, 1000), chunks=(100, 100), dtype='float32')
# write array to a roi
x = np.random.random_sample(size=(500, 500)).astype('float32')
ds[:500, :500] = x
# broadcast a scalar to a roi
ds[500:, 500:] = 42.
# read array from a roi
y = ds[250:750, 250:750]
# create a group and create a dataset in the group
g = f.create_group('local_group')
g.create_dataset('local_data', shape=(100, 100), chunks=(10, 10), dtype='uint32')
# open dataset from group or file
ds_local1 = f['local_group/local_data']
ds_local2 = g['local_data']
# read and write attributes
attributes = ds.attrs
attributes['foo'] = 'bar'
baz = attributes['foo']
C++
Z5 aims to supports different storage implementations. The default is to use the filesystem, implementations to also supports AWS-S3 and Google Cloud Storage are work in progress.
The API implements factory functions like createFile or createDataset in the factory header.
These functions need to be called with the corresponding handle, like z5::filesystem::handle::File or z5::s3::handle::File in order to specify which backend to use.
The library is intended to be used with an in-memory multiarray that holds the data.
Data is passed in and out via a lightweight, non-owning strided view, z5::multiarray::ArrayView / ConstArrayView (a data pointer plus shape and element strides, compatible with numpy arrays), see implementation and the IO functions readSubarray / writeSubarray in array_access.hxx.
To interface with another multiarray implementation, wrap its buffer in an ArrayView (data pointer + shape + element strides).
Some examples:
#include "json.hpp"
// factory functions to create files, groups and datasets
#include "z5/factory.hxx"
// handles for z5 filesystem objects
#include "z5/filesystem/handle.hxx"
// strided-view io for multi-arrays
#include "z5/multiarray/array_access.hxx"
// attribute functionality
#include "z5/attributes.hxx"
int main() {
// get handle to a File on the filesystem
z5::filesystem::handle::File f("data.zr");
// if you wanted to use a different backend, for example AWS, you
// would need to use this instead:
// z5::s3::handle::File f;
// create the file in zarr format
const bool createAsZarr = true;
z5::createFile(f, createAsZarr);
// create a new zarr dataset
const std::string dsName = "data";
std::vector<size_t> shape = { 1000, 1000, 1000 };
std::vector<size_t> chunks = { 100, 100, 100 };
auto ds = z5::createDataset(f, dsName, "float32", shape, chunks);
// write array to roi; the data lives in a C-contiguous buffer that we
// wrap in a (non-owning) strided view
z5::types::ShapeType offset1 = { 50, 100, 150 };
z5::types::ShapeType shape1 = { 150, 200, 100 };
std::vector<float> buffer1(150 * 200 * 100, 42.0);
z5::multiarray::ConstArrayView<float> array1(buffer1.data(), shape1,
z5::multiarray::cOrderStrides(shape1));
z5::multiarray::writeSubarray<float>(ds, array1, offset1.begin());
// read array from roi (values that were not written before are filled with a fill-value)
z5::types::ShapeType offset2 = { 100, 100, 100 };
z5::types::ShapeType shape2 = { 300, 200, 75 };
std::vector<float> buffer2(300 * 200 * 75);
z5::multiarray::ArrayView<float> array2(buffer2.data(), shape2,
z5::multiarray::cOrderStrides(shape2));
z5::multiarray::readSubarray<float>(ds, array2, offset2.begin());
// get handle for the dataset
const auto dsHandle = z5::filesystem::handle::Dataset(f, dsName);
// read and write json attributes
nlohmann::json attributesIn;
attributesIn["bar"] = "foo";
attributesIn["pi"] = 3.141593;
z5::writeAttributes(dsHandle, attributesIn);
nlohmann::json attributesOut;
z5::readAttributes(dsHandle, attributesOut);
return 0;
}
C
There are external efforts to implement a C-Api wrapper for z5. You can check it out here.
R
There exists a prototype by @gdkrmr to provide R bindings for z5. It is still in an early stage, but looks very promising.
Citation
If you use this library in your research, please cite it via the associated DOI:
@misc{pape_z5_2019,
doi = {10.5281/ZENODO.3585752},
url = {https://zenodo.org/record/3585752},
author = {Pape, Constantin},
title = {constantinpape/z5},
publisher = {Zenodo},
year = {2019}
}
Current Limitations / TODOs
- No thread / process synchronization -> writing to the same chunk in parallel will lead to undefined behavior.
- Supports only little endianness and C-order for the zarr format.
A note on axis ordering
Internally, n5 uses column-major (i.e. x, y, z) axis ordering, while z5 uses row-major (i.e. z, y, x). While this is mostly handled internally, it means that the metadata does not transfer 1 to 1, but needs to be reversed for most shapes. Concretely:
| n5 | z5 | |
|---|---|---|
| Shape | s_x, s_y, s_z | s_z, s_y, s_x |
| Chunk-Shape | c_x, c_y, c_z | c_z, c_y, c_x |
| Chunk-Ids | i_x, i_y, i_z | i_z, i_y, i_x |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file z5py-3.0.1.tar.gz.
File metadata
- Download URL: z5py-3.0.1.tar.gz
- Upload date:
- Size: 390.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f290dc466d981e2cb05bbf63fed5129dc2ecaff44209bac2756815a9a3c8196b
|
|
| MD5 |
49fb586ed1970fd6e3ce4f6224cd9d23
|
|
| BLAKE2b-256 |
a68cc3d6edc73dcf3b025001b48ff2638416225d343e701dd55401b085dae726
|
Provenance
The following attestation bundles were made for z5py-3.0.1.tar.gz:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1.tar.gz -
Subject digest:
f290dc466d981e2cb05bbf63fed5129dc2ecaff44209bac2756815a9a3c8196b - Sigstore transparency entry: 1828147549
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: z5py-3.0.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 893.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fe2ba8d89aeea2ba858c7193454ee47238b09a74335f2884004348c2869afeb
|
|
| MD5 |
c265040fa49c0202be9a1da0c1f71ca1
|
|
| BLAKE2b-256 |
350543090b03fa1125ff301430958e167ef4f0599dbc75652fe5813883c15093
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp313-cp313-win_amd64.whl -
Subject digest:
3fe2ba8d89aeea2ba858c7193454ee47238b09a74335f2884004348c2869afeb - Sigstore transparency entry: 1828147593
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: z5py-3.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26550af24610d5f9ed35aa52f35aadc41ce91ac1dd68499d42f2ebd15790493c
|
|
| MD5 |
7d047777f7fd3e17dce494a6f973bc77
|
|
| BLAKE2b-256 |
333fad933219dcdcf9c1a39d8c4328abdc0e74ef731bd9899a898b4711d9623d
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
26550af24610d5f9ed35aa52f35aadc41ce91ac1dd68499d42f2ebd15790493c - Sigstore transparency entry: 1828147638
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: z5py-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c68d9d1e315bc4e74c2515e35af6198ec967240552c03494d7d8f5409dbddf66
|
|
| MD5 |
51f5bfabc50358800f76e809273b2d6c
|
|
| BLAKE2b-256 |
bd3c453787d1bebc79b0b04c0ac70503d1a6151ee6399e6847f7a89473b29665
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
c68d9d1e315bc4e74c2515e35af6198ec967240552c03494d7d8f5409dbddf66 - Sigstore transparency entry: 1828147737
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: z5py-3.0.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 894.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6951e1b5ba7d6e517759562ec08d9674a9ffa027af1fc0e0c3aae54b3ca043de
|
|
| MD5 |
78493a18852971d2fcc6a91662965e7f
|
|
| BLAKE2b-256 |
a8e4799b3cfc7871e9df5f106b75d781a9cf8708e2ce5801f9c0ecd2a56e0b00
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp312-cp312-win_amd64.whl -
Subject digest:
6951e1b5ba7d6e517759562ec08d9674a9ffa027af1fc0e0c3aae54b3ca043de - Sigstore transparency entry: 1828147772
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: z5py-3.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
789a62fcfa5eafe973c64d33bf426efe4d3d65e826b8382ed70350d08866db38
|
|
| MD5 |
c17b9b02e7e453bd3b3e447c6e4a2324
|
|
| BLAKE2b-256 |
9557ad8fa40e754b1f39b86b26b31f206c19d47baf859b709490db0e3cec6b4f
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
789a62fcfa5eafe973c64d33bf426efe4d3d65e826b8382ed70350d08866db38 - Sigstore transparency entry: 1828147698
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: z5py-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f2c93ae32a380767e821d100f760cc4d3a0515415f72350828d28158fd503be
|
|
| MD5 |
cffd07e8d56954c786d324ed7aad50b1
|
|
| BLAKE2b-256 |
b1c89f234c1c6cd37a7e3b7a7e284d463a602de8b5740d2a9c6471e4c91daa89
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
7f2c93ae32a380767e821d100f760cc4d3a0515415f72350828d28158fd503be - Sigstore transparency entry: 1828147971
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: z5py-3.0.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 894.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b706f1ed25b41bbbf570966143758e15dfdff31f147a6e9c9505ed050ed04240
|
|
| MD5 |
30682a8582ff00ad5d4dc3809962c03d
|
|
| BLAKE2b-256 |
4dba2c721f70047001543987f7898b34683806704fc22b6388844d83c807724c
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp311-cp311-win_amd64.whl -
Subject digest:
b706f1ed25b41bbbf570966143758e15dfdff31f147a6e9c9505ed050ed04240 - Sigstore transparency entry: 1828147865
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: z5py-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
876c54442fe5f9c9bd88a3530d5e199d470d94b9a5f5ac7e5c1ab620430211a0
|
|
| MD5 |
c0748ebea7a1ca05f547a4ad5f713753
|
|
| BLAKE2b-256 |
61113ecb54ea55da5fa198e7fd84e3d453429ee03b8c35d1f9a210583ab10a0a
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
876c54442fe5f9c9bd88a3530d5e199d470d94b9a5f5ac7e5c1ab620430211a0 - Sigstore transparency entry: 1828147808
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type:
File details
Details for the file z5py-3.0.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: z5py-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a86ac8c21bceeb998bbd2e4cf225d821553a340a0b443c054188b7888945e43
|
|
| MD5 |
223dc448d9a64e00e0445ebbff9068f3
|
|
| BLAKE2b-256 |
63dbf0a2348b542caa0e033d6822fdb6fe97ac6bef8ce73c403f8cf7f6425466
|
Provenance
The following attestation bundles were made for z5py-3.0.1-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on constantinpape/z5
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
z5py-3.0.1-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
6a86ac8c21bceeb998bbd2e4cf225d821553a340a0b443c054188b7888945e43 - Sigstore transparency entry: 1828147917
- Sigstore integration time:
-
Permalink:
constantinpape/z5@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Branch / Tag:
refs/tags/3.0.1 - Owner: https://github.com/constantinpape
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@d28cb8f1eb134628a419a5d5ab6ef8e2d3933389 -
Trigger Event:
release
-
Statement type: