-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
API: formalize the pandas IO API #15862
Comments
This should IMO also extend to generic write methods
It may well be that it makes no sense to have a generic method for all data types (like CSV), but those that are around should have a unified interface as well. |
@jreback do you think there's anything here that's a blocker for 1.0? |
nothing immediately obvious likely need to audit all of the IO methods for conformity and show a matrix of what apis we have for each |
I think this is a duplicate issue as #15008 as they are covering similar points. Going to close this issue in favor of that one |
#15838 (comment)
we have fairly uniform IO routines of the form
.to_format(path, df, **kwargs)
(takes DataFrame)and
pd.read_format(path, **kwargs)
(returns DataFrame)so should document various aspects of this:
is_file_like
(ENH: Add file buffer validation to I/O ops #15894)mode
(for writing)The text was updated successfully, but these errors were encountered: