We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pandas/pandas/io/pickle.py
Line 95 in 62a87bf
read_pickle does not accept google storage URL (in form "gs://bucket-name/path/file.pkl") as input
While this code works fine: with tf.io.gfile.GFile("gs://bucket-name/path/file.pkl", "rb") as infile: df = pd.read_pickle(infile, compression=None)
with tf.io.gfile.GFile("gs://bucket-name/path/file.pkl", "rb") as infile: df = pd.read_pickle(infile, compression=None)
Might be reasonable to amend the documentation with this if the above is true for the recent version of pandas.
The text was updated successfully, but these errors were encountered:
Makes sense - should be in line with other IO functions I think
Sorry, something went wrong.
this is very easy to patch to actually read from uri
I'll take this
suzutomato
Successfully merging a pull request may close this issue.
pandas/pandas/io/pickle.py
Line 95 in 62a87bf
read_pickle does not accept google storage URL (in form "gs://bucket-name/path/file.pkl") as input
While this code works fine:
with tf.io.gfile.GFile("gs://bucket-name/path/file.pkl", "rb") as infile: df = pd.read_pickle(infile, compression=None)
Might be reasonable to amend the documentation with this if the above is true for the recent version of pandas.
The text was updated successfully, but these errors were encountered: