ENH Adding read_* support for Google Cloud Storage gs:// URLs · Issue #19454 · pandas-dev/pandas (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@vision-sbm

Description

@vision-sbm

Would be great if pandas were to support reading directly from Google Cloud Storage URLs (gs://), similar to the way it supports AWS s3 URLs (s3://)

Ideally, one could write:

df_csv = pd.read_csv('gs://my-bucket/super-cool-dataset.csv') df_excel = pd.read_excel('gs://my-bucket/super-cool-dataset.xlsx')

I took a quick stab at it in 4c9196a. Let me know if this makes sense and I can add some documentation/tests around it and open a pull request.