@@ -1036,15 +1036,15 @@ async def create_array(
10361036 chunk_shape : tuple[int, ...] | None = None
10371037 The shape of the chunks of the array.
10381038 V3 only. V2 arrays should use `chunks` instead.
1039- Default values are guessed based on the shape and dtype.
1039+ If not specified, default are guessed based on the shape and dtype.
10401040 chunk_key_encoding : ChunkKeyEncoding | tuple[Literal["default"], Literal[".", "/"]] | tuple[Literal["v2"], Literal[".", "/"]] | None = None
10411041 A specification of how the chunk keys are represented in storage.
10421042 V3 only. V2 arrays should use `dimension_separator` instead.
1043- Default is ("default", "/").
1043+ Default is `` ("default", "/")`` .
10441044 codecs : Iterable[Codec | dict[str, JSON]] | None = None
1045- An iterable of Codec or dict serializations thereof . The elements of
1045+ An iterable of Codec or dict serializations of Codecs . The elements of
10461046 this collection specify the transformation from array values to stored bytes.
1047- V3 only. V2 arrays should use `filters` and `compressor` instead.
1047+ V3 only. V2 arrays should use `` filters`` and `` compressor` ` instead.
10481048 If no codecs are provided, default codecs will be used:
10491049 - For numeric arrays, the default is `BytesCodec` and `ZstdCodec`.
10501050 - For Unicode strings, the default is `VLenUTF8Codec`.
@@ -1055,21 +1055,21 @@ async def create_array(
10551055 chunks : ChunkCoords | None = None
10561056 The shape of the chunks of the array.
10571057 V2 only. V3 arrays should use `chunk_shape` instead.
1058- Default values are guessed based on the shape and dtype.
1058+ If not specified, default are guessed based on the shape and dtype.
10591059 dimension_separator : Literal[".", "/"] | None = None
10601060 The delimiter used for the chunk keys. (default: ".")
1061- V2 only. V3 arrays should use `chunk_key_encoding` instead.
1061+ V2 only. V3 arrays should use `` chunk_key_encoding` ` instead.
10621062 order : Literal["C", "F"] | None = None
10631063 The memory order of the array (default is specified in the Zarr config `array.order`).
10641064 filters : list[dict[str, JSON]] | None = None
10651065 Sequence of filters to use to encode chunk data prior to compression.
1066- V2 only. V3 arrays should use `codecs` instead. If neither `compressor`
1067- nor `filters` are provided, a default compressor will be used. (see
1068- `compressor` for details)
1066+ V2 only. V3 arrays should use `` codecs`` instead. If neither `` compressor` `
1067+ nor `` filters` ` are provided, a default compressor will be used. (see
1068+ `` compressor` ` for details)
10691069 compressor : dict[str, JSON] | None = None
10701070 The compressor used to compress the data (default is None).
1071- V2 only. V3 arrays should use `codecs` instead.
1072- If neither `compressor` nor `filters` are provided, a default compressor will be used:
1071+ V2 only. V3 arrays should use `` codecs` ` instead.
1072+ If neither `` compressor`` nor `` filters` ` are provided, a default compressor will be used:
10731073 - For numeric arrays, the default is `ZstdCodec`.
10741074 - For Unicode strings, the default is `VLenUTF8Codec`.
10751075 - For bytes or objects, the default is `VLenBytesCodec`.
@@ -2257,15 +2257,15 @@ def create_array(
22572257 chunk_shape : tuple[int, ...] | None = None
22582258 The shape of the chunks of the array.
22592259 V3 only. V2 arrays should use `chunks` instead.
2260- Default values are guessed based on the shape and dtype.
2260+ If not specified, default are guessed based on the shape and dtype.
22612261 chunk_key_encoding : ChunkKeyEncoding | tuple[Literal["default"], Literal[".", "/"]] | tuple[Literal["v2"], Literal[".", "/"]] | None = None
22622262 A specification of how the chunk keys are represented in storage.
22632263 V3 only. V2 arrays should use `dimension_separator` instead.
2264- Default is ("default", "/").
2264+ Default is `` ("default", "/")`` .
22652265 codecs : Iterable[Codec | dict[str, JSON]] | None = None
2266- An iterable of Codec or dict serializations thereof . The elements of
2266+ An iterable of Codec or dict serializations of Codecs . The elements of
22672267 this collection specify the transformation from array values to stored bytes.
2268- V3 only. V2 arrays should use `filters` and `compressor` instead.
2268+ V3 only. V2 arrays should use `` filters`` and `` compressor` ` instead.
22692269 If no codecs are provided, default codecs will be used:
22702270 - For numeric arrays, the default is `BytesCodec` and `ZstdCodec`.
22712271 - For Unicode strings, the default is `VLenUTF8Codec`.
@@ -2276,21 +2276,21 @@ def create_array(
22762276 chunks : ChunkCoords | None = None
22772277 The shape of the chunks of the array.
22782278 V2 only. V3 arrays should use `chunk_shape` instead.
2279- Default values are guessed based on the shape and dtype.
2279+ If not specified, default are guessed based on the shape and dtype.
22802280 dimension_separator : Literal[".", "/"] | None = None
22812281 The delimiter used for the chunk keys. (default: ".")
2282- V2 only. V3 arrays should use `chunk_key_encoding` instead.
2282+ V2 only. V3 arrays should use `` chunk_key_encoding` ` instead.
22832283 order : Literal["C", "F"] | None = None
22842284 The memory order of the array (default is specified in the Zarr config `array.order`).
22852285 filters : list[dict[str, JSON]] | None = None
22862286 Sequence of filters to use to encode chunk data prior to compression.
2287- V2 only. V3 arrays should use `codecs` instead. If neither `compressor`
2288- nor `filters` are provided, a default compressor will be used. (see
2289- `compressor` for details)
2287+ V2 only. V3 arrays should use `` codecs`` instead. If neither `` compressor` `
2288+ nor `` filters` ` are provided, a default compressor will be used. (see
2289+ `` compressor` ` for details)
22902290 compressor : dict[str, JSON] | None = None
22912291 The compressor used to compress the data (default is None).
2292- V2 only. V3 arrays should use `codecs` instead.
2293- If neither `compressor` nor `filters` are provided, a default compressor will be used:
2292+ V2 only. V3 arrays should use `` codecs` ` instead.
2293+ If neither `` compressor`` nor `` filters` ` are provided, a default compressor will be used:
22942294 - For numeric arrays, the default is `ZstdCodec`.
22952295 - For Unicode strings, the default is `VLenUTF8Codec`.
22962296 - For bytes or objects, the default is `VLenBytesCodec`.
@@ -2621,15 +2621,15 @@ def array(
26212621 chunk_shape : tuple[int, ...] | None = None
26222622 The shape of the chunks of the array.
26232623 V3 only. V2 arrays should use `chunks` instead.
2624- Default values are guessed based on the shape and dtype.
2624+ If not specified, default are guessed based on the shape and dtype.
26252625 chunk_key_encoding : ChunkKeyEncoding | tuple[Literal["default"], Literal[".", "/"]] | tuple[Literal["v2"], Literal[".", "/"]] | None = None
26262626 A specification of how the chunk keys are represented in storage.
26272627 V3 only. V2 arrays should use `dimension_separator` instead.
2628- Default is ("default", "/").
2628+ Default is `` ("default", "/")`` .
26292629 codecs : Iterable[Codec | dict[str, JSON]] | None = None
2630- An iterable of Codec or dict serializations thereof . The elements of
2630+ An iterable of Codec or dict serializations of Codecs . The elements of
26312631 this collection specify the transformation from array values to stored bytes.
2632- V3 only. V2 arrays should use `filters` and `compressor` instead.
2632+ V3 only. V2 arrays should use `` filters`` and `` compressor` ` instead.
26332633 If no codecs are provided, default codecs will be used:
26342634 - For numeric arrays, the default is `BytesCodec` and `ZstdCodec`.
26352635 - For Unicode strings, the default is `VLenUTF8Codec`.
@@ -2640,21 +2640,21 @@ def array(
26402640 chunks : ChunkCoords | None = None
26412641 The shape of the chunks of the array.
26422642 V2 only. V3 arrays should use `chunk_shape` instead.
2643- Default values are guessed based on the shape and dtype.
2643+ If not specified, default are guessed based on the shape and dtype.
26442644 dimension_separator : Literal[".", "/"] | None = None
26452645 The delimiter used for the chunk keys. (default: ".")
2646- V2 only. V3 arrays should use `chunk_key_encoding` instead.
2646+ V2 only. V3 arrays should use `` chunk_key_encoding` ` instead.
26472647 order : Literal["C", "F"] | None = None
26482648 The memory order of the array (default is specified in the Zarr config `array.order`).
26492649 filters : list[dict[str, JSON]] | None = None
26502650 Sequence of filters to use to encode chunk data prior to compression.
2651- V2 only. V3 arrays should use `codecs` instead. If neither `compressor`
2652- nor `filters` are provided, a default compressor will be used. (see
2653- `compressor` for details)
2651+ V2 only. V3 arrays should use `` codecs`` instead. If neither `` compressor` `
2652+ nor `` filters` ` are provided, a default compressor will be used. (see
2653+ `` compressor` ` for details)
26542654 compressor : dict[str, JSON] | None = None
26552655 The compressor used to compress the data (default is None).
2656- V2 only. V3 arrays should use `codecs` instead.
2657- If neither `compressor` nor `filters` are provided, a default compressor will be used:
2656+ V2 only. V3 arrays should use `` codecs` ` instead.
2657+ If neither `` compressor`` nor `` filters` ` are provided, a default compressor will be used:
26582658 - For numeric arrays, the default is `ZstdCodec`.
26592659 - For Unicode strings, the default is `VLenUTF8Codec`.
26602660 - For bytes or objects, the default is `VLenBytesCodec`.
0 commit comments