Skip to content

Commit

Permalink
Add support for oss to cloud protocols (#4082)
Browse files Browse the repository at this point in the history
CLOUD_PROTOCOLS add  more official fsspec implament (oss) 

Signed-off-by: rong fengliang <1141591465@qq.com>
  • Loading branch information
rongfengliang authored Sep 20, 2024
1 parent 82a69f2 commit fd6a69d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion kedro/io/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,18 @@
VERSION_KEY = "version"
HTTP_PROTOCOLS = ("http", "https")
PROTOCOL_DELIMITER = "://"
CLOUD_PROTOCOLS = ("s3", "s3n", "s3a", "gcs", "gs", "adl", "abfs", "abfss", "gdrive")
CLOUD_PROTOCOLS = (
"abfs",
"abfss",
"adl",
"gcs",
"gdrive",
"gs",
"oss",
"s3",
"s3a",
"s3n",
)


class DatasetError(Exception):
Expand Down

0 comments on commit fd6a69d

Please sign in to comment.