Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

save a file as a pickle

with open('mypickle.pickle', 'wb') as f:
    pickle.dump(some_obj, f)

# note that this will overwrite any existing file
# in the current working directory called 'mypickle.pickle'
Source by ianlondon.github.io #
 
PREVIOUS NEXT
Tagged: #save #file #pickle
ADD COMMENT
Topic
Name
7+9 =