Hickle :: Anaconda.org
https://anaconda.org/conda-forge/hickleconda install -c conda-forge/label/cf202003 hickle Description hickle is a neat, quick way of dumping python variables to HDF5 files that can be read in most programming languages. Hickle is fast, and allows for transparent compression of your data (LZF / GZIP). Hickle is built upon h5py, and can be used as a drop-in replacement for pickle/cPickle.
pickle5 · PyPI
https://pypi.org/project/pickle520.11.2021 · It should work with Python 3.5, 3.6 and 3.7. Basic usage is similar to the pickle module, except that the module to be imported is pickle5: import pickle5 as pickle pb = pickle.PickleBuffer(b"foo") data = pickle.dumps(pb, protocol=5) assert pickle.loads(data) == b"foo". Detailed documentation can be found in PEP 574 and the standard pickle ...