From 43b0423938246fc5b14870b24d4ce81fdc4ec87b Mon Sep 17 00:00:00 2001 From: Aniket Singh Yadav Date: Thu, 4 Dec 2025 17:05:39 +0530 Subject: [PATCH] Added gs to the list of valid URL schemes in the read_feather --- pandas/io/feather_format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/io/feather_format.py b/pandas/io/feather_format.py index ebb678c26db30..26b97f1ad5e54 100644 --- a/pandas/io/feather_format.py +++ b/pandas/io/feather_format.py @@ -92,7 +92,7 @@ def read_feather( path : str, path object, or file-like object String, path object (implementing ``os.PathLike[str]``), or file-like object implementing a binary ``read()`` function. The string could be a URL. - Valid URL schemes include http, ftp, s3, and file. For file URLs, a host is + Valid URL schemes include http, ftp, s3, gs and file. For file URLs, a host is expected. A local file could be: ``file://localhost/path/to/table.feather``. columns : sequence, default None If not provided, all columns are read.