Skip to content

Commit

Permalink
Add support for abfss protocol. (#113)
Browse files Browse the repository at this point in the history
Co-authored-by: Malo Jaffré <malo.jaffre@bouvet.no>
  • Loading branch information
ghjklw and Malo Jaffré committed Jul 6, 2023
1 parent 38becf3 commit f4fd9d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions upath/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f4fd9d6

Please sign in to comment.