adlfs
Access Azure Blobs and Data Lake Storage (ADLS) Gen2 with fsspec and dask
What it is and what it does
adlfs implements filesystem-like access to Azure Blob Storage and Azure Data Lake Storage Gen2 through fsspec, allowing you to interact with cloud storage using familiar file operations (read, write, list) via the `abfs://` and `az://` protocols. The package wraps the official Azure Blob Storage Python SDK and registers itself in fsspec's known_implementations, so tools that support fsspec can transparently access Azure storage.
Authentication is flexible: the package can use DefaultAzureCredential for automatic discovery, or accept explicit credentials via account keys, connection strings, SAS tokens, or service principals passed through storage_options. Write operations create BlockBlobs by default; AppendBlobs are available via `mode="ab"`. The package supports multiple URI formats and can read from public containers when provided with an account name.
Use it for:
- Read CSV or Parquet files from Azure storage using fsspec-compatible tools without downloading to local disk.
- Access public Azure datasets by specifying the account name and using anonymous credentials.
- Integrate Azure Blob Storage into ETL pipelines that use fsspec, treating cloud storage as a mounted filesystem.
- Write processed data back to Azure storage without staging to local disk.
- Authenticate to Azure storage using service principals or managed identities in automated environments.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides a filesystem interface to Azure Blob Storage and Azure Data Lake Storage Gen2, enabling file-like access through fsspec.
Yes. The package is actively maintained with no known vulnerabilities, low install friction, and a permissive BSD license. It solves a real problem—fsspec-compatible access to Azure storage—and integrates cleanly with the Azure Python SDK ecosystem. Install if you need to read from or write to Azure Blob Storage or Data Lake Storage Gen2 through fsspec.
Install
adlfs on PyPI
pip
pip install adlfsuv
uv add adlfspoetry
poetry add adlfsInstalling adlfs
Before you install
Low friction install with a pure-Python wheel. Actively maintained with a recent release 3 days old. Depends on four Azure SDK packages and fsspec, all stable and widely used.
License in practice
BSD license is permissive; you can use, modify, and distribute this package with minimal restrictions, suitable for both open-source and commercial projects.
Quickstart
pip install adlfs
import fsspec
storage_options = {'account_name': 'myaccount', 'account_key': 'mykey'}
fs = fsspec.filesystem('abfs', **storage_options)
files = fs.ls('container/folder')
Requires Python >=3.10. Azure credentials (account name/key, connection string, or service principal) must be provided or discoverable via DefaultAzureCredential.
Verify before relying
- Performance characteristics when reading or writing large files or many small files to Azure storage.
- Whether append operations on AppendBlobs work reliably with hierarchical namespaces disabled.
- Compatibility with Dask beyond the documented read_csv and read_parquet examples.
Package facts
| License | BSD (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 4 — azure-core, azure-identity, azure-storage-blob, fsspec |
| Maintenance | actively maintained — 3 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 15,918,404/month — #1,170 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: adlfs-2026.8.0-py3-none-any.whl
Keywords: file-system, dask, azure
Tags
More Distributed Computing packages
gRPC Python is an HTTP/2-based RPC framework…
permissive · top 100 on PyPI
execnetexecnet lets you spawn and communicate with…
permissive · top 1,000 on PyPI
cloudpickleCloudpickle extends Python's standard pickle…
permissive · top 1,000 on PyPI
smart-openProvides a unified, open()-compatible Python…
permissive · top 1,000 on PyPI
portalockerPortalocker provides cross-platform file…
permissive · top 1,000 on PyPI
rayRay is a distributed computing framework that…
permissive · top 1,000 on PyPI
azure-datalake-storeProvides a Python filesystem interface to…
permissive · top 1,000 on PyPI
azure-storage-file-datalakeProvides Python client library for Azure Data…
permissive · top 1,000 on PyPI
msgraphfsProvides a filesystem interface to Microsoft…
permissive · top 5,000 on PyPI
pyarrowfs-adlgen2Provides a PyArrow filesystem interface for…
permissive · top 15,000 on PyPI
ocifsProvides a fsspec-compatible filesystem…
unclear · top 15,000 on PyPI
azureml-fsspecProvides a filesystem interface to Azure…
unclear · top 15,000 on PyPI
dvc-azureAdds Azure Blob Storage and Azure Data Lake…
permissive · top 15,000 on PyPI
webdav4A WebDAV client library that provides a Python…
permissive · top 15,000 on PyPI
fsspecfsspec provides a unified filesystem interface…
unclear · top 100 on PyPI
python-dxfStores and retrieves arbitrary data blobs in…
permissive · top 15,000 on PyPI