-
-
Notifications
You must be signed in to change notification settings - Fork 19.4k
Description
Pandas version checks
- I have checked that the issue still exists on the latest versions of the docs on
mainhere
Location of the documentation
https://pandas.pydata.org/docs/dev/reference/api/pandas.read_feather.html
Documentation problem
Hello!
From read_parquet() docs:
path : str, path object or file-like object
String, path object (implementingos.PathLike[str]), or file-like object implementing a binaryread()function. The string could be a URL. Valid URL schemes include http, ftp, s3, gs, and file.
From read_feather() docs:
path : str, path object, or file-like object
String, path object (implementingos.PathLike[str]), or file-like object implementing a binaryread()function. The string could be a URL. Valid URL schemes include http, ftp, s3, and file. For file URLs, a host is expected. A local file could be:file://localhost/path/to/table.feather.
Q1. Does read_feather() not support gs:// URLs in path parameter? If yes then the docs need to be updated for the same.
From read_pickle() docs:
filepath_or_buffer : str, path object, or file-like object
String, path object (implementingos.PathLike[str]), or file-like object implementing a binaryreadlines()function. Also accepts URL. URL is not limited to S3 and GCS.
Q2. This means read_pickle() does support gs:// URLs in filepath_or_buffer parameter like read_parquet(), correct?
Suggested fix for documentation
Valid URL schemes include http, ftp, s3, gs and file.