ENH Adding read_* support for Google Cloud Storage gs:// URLs · Issue #19454 · pandas-dev/pandas (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Description
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.