pypickle is to save and load variables in/from pickle files
⭐️ Star this repo if you like it ⭐️
On the documentation pages you can find more information about pypickle
with examples.
pip install pypickle # normal install
pip install -U pypickle # update if needed
import pypickle
import pypickle
filepath = 'test.pkl'
# Some data
data = [1,2,3,4,5]
# Save
status = pypickle.save(filepath, data)
# Load file
data = pypickle.load(filepath)
Please cite pypickle in your publications if this is useful for your research. See column right for citation information.