diff --git a/README.md b/README.md index a007440..7aadae2 100644 --- a/README.md +++ b/README.md @@ -63,10 +63,6 @@ b_loaded = h5['b'] e_loaded = h5['c']['e'] h5.keys() ``` -In Jupyter, you can interactively explore the file structure: - -image - Create a new HDF5 file (or add items to existing file by setting argument `readonly=False`): ```python @@ -86,7 +82,14 @@ lazyh5('/path/to/datafile.h5').from_dict(some_dict) loaded = lazyh5('/path/to/datafile.h5').to_dict() ``` -Old interface: +In Jupyter, you can interactively explore the file structure: + +image + + +----- +
Old interface (expand this) + ```python from daio.h5 import save_to_h5, load_from_h5 # save dict to HDF5 file: @@ -95,3 +98,5 @@ save_to_h5('/path/to/datafile.h5', some_dict) # load dict from HDF5 file: dict_loaded = load_from_h5('/path/to/datafile.h5') ``` + +