Industry Standards: HDF5
- accessible through h5py
- freely availble
- strong compression
- can be sliced without loading the entire file in memory
- organized similar to a file explorer
industry standard for non-tabular data
import h5py
f = h5py.File(<path/to/file.h5>, "r")
f.close()
f2 = h5py.File(<path/to/file.h5>, "w")
grp = f2.create_group(<name/of/group>)
dataset1 = grp.create_dataset(<name/of/dataset>, <shape>, dtype=<datatype>)
dataset2 = grp.create_dataset(<name/of/dataset>, data=<your_data_array>)