We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ab8339 commit 9b97c95Copy full SHA for 9b97c95
src/zarr/core/group.py
@@ -3451,7 +3451,21 @@ async def read_node(
3451
) -> AsyncArray[ArrayV2Metadata] | AsyncArray[ArrayV3Metadata] | AsyncGroup:
3452
"""
3453
Read an AsyncArray or AsyncGroup from a path in a Store.
3454
+
3455
+ Parameters
3456
+ ----------
3457
+ store : Store
3458
+ The store-like object to read from.
3459
+ path : str
3460
+ The path to the node to read.
3461
+ zarr_format : {2, 3}
3462
+ The zarr format of the node to read.
3463
3464
+ Returns
3465
+ -------
3466
+ AsyncArray | AsyncGroup
3467
3468
3469
match zarr_format:
3470
case 2:
3471
return await _read_node_v2(store=store, path=path)
0 commit comments