CLI Reference

Contents

CLI Reference#

zipzarr#

Pack a Zarr directory store into a single .zip archive.

By default, packages the directory SRC into the .zip file DEST. If DEST is omitted, it defaults to SRC with a .zip suffix appended.

With -u/–unzip, the direction is reversed: SRC is a .zip archive and DEST is the directory it should be extracted into. If DEST is omitted, it defaults to SRC with the trailing .zip stripped.

On success, SRC is removed (like gzip). Pass -k/–keep to preserve it. zipzarr does not check whether the input is a well-formed Zarr store – it will zip any directory and unzip any archive.

Usage

zipzarr [OPTIONS] SRC [DEST]

Options

--version#

Show the version and exit.

-u, --unzip#

Unzip SRC (a .zip archive) into DEST (a directory).

-k, --keep#

Keep (don’t delete) the source after a successful operation.

-f, --force#

Force overwriting of existing directories

-v, --verbose#

Increase verbosity

-P, --progress, -Q, --no-progress#

Show progress bars (default: show)

Arguments

SRC#

Required argument

DEST#

Optional argument