Right now data is stored in the .npy or .pickle format with a corresponding index file. It could be nice to integrate the index file in a little wrapper class, that could contain both data and meta data.
The naive way for storing such an object is in the pickle format. My only concern with the pickle format is that it is not secure see documentation (https://docs.python.org/3.9/library/pickle.html).
Maybe we should consider finding an alternative? Maybe hdf5?
Right now data is stored in the .npy or .pickle format with a corresponding index file. It could be nice to integrate the index file in a little wrapper class, that could contain both data and meta data.
The naive way for storing such an object is in the pickle format. My only concern with the pickle format is that it is not secure see documentation (https://docs.python.org/3.9/library/pickle.html).
Maybe we should consider finding an alternative? Maybe hdf5?