From f4fd9d6f4a8d40ceb279f70e5aa68b5ec602879a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20Jaffr=C3=A9?= <8469951+ghjklw@users.noreply.github.com> Date: Thu, 6 Jul 2023 19:13:23 +0200 Subject: [PATCH] Add support for abfss protocol. (#113) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Malo Jaffré --- README.md | 2 +- upath/registry.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b1837918..7817cbe4 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ For more examples, see the [example notebook here](notebooks/examples.ipynb) - `file:` Local filessystem - `memory:` Ephemeral filesystem in RAM -- `az:`, `adl:` and `abfs:` Azure Storage (requires `adlfs` to be installed) +- `az:`, `adl:`, `abfs:` and `abfss:` Azure Storage (requires `adlfs` to be installed) - `http:` and `https:` HTTP(S)-based filesystem - `hdfs:` Hadoop distributed filesystem - `gs:` and `gcs:` Google Cloud Storage (requires `gcsfs` to be installed) diff --git a/upath/registry.py b/upath/registry.py index ed4567a4..8465a50d 100644 --- a/upath/registry.py +++ b/upath/registry.py @@ -19,6 +19,7 @@ class _Registry: known_implementations: dict[str, str] = { "abfs": "upath.implementations.cloud.AzurePath", + "abfss": "upath.implementations.cloud.AzurePath", "adl": "upath.implementations.cloud.AzurePath", "az": "upath.implementations.cloud.AzurePath", "gcs": "upath.implementations.cloud.GCSPath",