-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Next
Next commit
CLN depreciate save&load in favour of to_pickle&read_pickle
DOC replace save&load with to_pickle&read_pickle
- Loading branch information
commit e591d0204e42888b59314b15b09735cecbb74ec5
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# XXX: HACK for NumPy 1.5.1 to suppress warnings | ||
try: | ||
import cPickle as pickle | ||
except ImportError: # pragma: no cover | ||
import pickle | ||
|
||
def to_pickle(obj, path): | ||
""" | ||
Pickle (serialize) object to input file path | ||
|
||
Parameters | ||
---------- | ||
obj : any object | ||
path : string | ||
File path | ||
""" | ||
f = open(path, 'wb') | ||
try: | ||
pickle.dump(obj, f, protocol=pickle.HIGHEST_PROTOCOL) | ||
finally: | ||
f.close() | ||
|
||
def read_pickle(path): | ||
""" | ||
Load pickled pandas object (or any other pickled object) from the specified | ||
file path | ||
|
||
Warning: Loading pickled data received from untrusted sources can be unsafe. | ||
See: http://docs.python.org/2.7/library/pickle.html | ||
|
||
Parameters | ||
---------- | ||
path : string | ||
File path | ||
|
||
Returns | ||
------- | ||
unpickled : type of object stored in file | ||
""" | ||
try: | ||
with open(path,'rb') as fh: | ||
return pickle.load(fh) | ||
except: | ||
from pandas.util import py3compat | ||
if not py3compat.PY3: | ||
raise | ||
with open(path,'rb') as fh: | ||
return pickle.load(fh, encoding='latin1') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CLN deprecate save&load in favour of to_pickle&read_pickle #3787
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
CLN deprecate save&load in favour of to_pickle&read_pickle #3787
Changes from 1 commit
e591d02
2011da2
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.