Skip to content

Commit f4fd9d6

Browse files
ghjklwMalo Jaffré
andauthored
Add support for abfss protocol. (#113)
Co-authored-by: Malo Jaffré <[email protected]>
1 parent 38becf3 commit f4fd9d6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For more examples, see the [example notebook here](notebooks/examples.ipynb)
5050

5151
- `file:` Local filessystem
5252
- `memory:` Ephemeral filesystem in RAM
53-
- `az:`, `adl:` and `abfs:` Azure Storage (requires `adlfs` to be installed)
53+
- `az:`, `adl:`, `abfs:` and `abfss:` Azure Storage (requires `adlfs` to be installed)
5454
- `http:` and `https:` HTTP(S)-based filesystem
5555
- `hdfs:` Hadoop distributed filesystem
5656
- `gs:` and `gcs:` Google Cloud Storage (requires `gcsfs` to be installed)

upath/registry.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
class _Registry:
2020
known_implementations: dict[str, str] = {
2121
"abfs": "upath.implementations.cloud.AzurePath",
22+
"abfss": "upath.implementations.cloud.AzurePath",
2223
"adl": "upath.implementations.cloud.AzurePath",
2324
"az": "upath.implementations.cloud.AzurePath",
2425
"gcs": "upath.implementations.cloud.GCSPath",

0 commit comments

Comments
 (0)