-
-
Notifications
You must be signed in to change notification settings - Fork 283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
top-level functions for reading, creating data #2463
base: main
Are you sure you want to change the base?
Conversation
in writing this PR I noticed that we don't have a |
I'm wrong, we don't have |
This is ready for review. To summarize: I created 5 new top-level exports:
The goal for these functions is to directly support common access patterns without forcing users to worry about the semantics of the |
Some feedback from the community meeting last week:
|
adds async and sync
read_array
,read_group
, andread
functions.read_array
will read an array from storage.read_group
does the same, but for groups, andread
will try to read arrays or groups at the storage path. These functions wrap their respective creation functions, passingmode=r
in each case.I still need to add tests.
TODO: