From 3969aaf7378198b92df8dee99cd464d272a0d0f4 Mon Sep 17 00:00:00 2001 From: skshetry Date: Mon, 3 Oct 2022 23:09:04 +0545 Subject: [PATCH] registry: add asynclocalfs to the registry (#1060) * registry: add asynclocalfs to the registry * Update fsspec/registry.py --- fsspec/registry.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fsspec/registry.py b/fsspec/registry.py index 7ccc488ef..e38674384 100644 --- a/fsspec/registry.py +++ b/fsspec/registry.py @@ -145,6 +145,10 @@ def register_implementation(name, cls, clobber=True, errtxt=None): "class": "ocifs.OCIFileSystem", "err": "Install ocifs to access OCI Object Storage", }, + "asynclocal": { + "class": "morefs.asyn_local.AsyncLocalFileSystem", + "err": "Install 'morefs[asynclocalfs]' to use AsyncLocalFileSystem", + }, "adl": { "class": "adlfs.AzureDatalakeFileSystem", "err": "Install adlfs to access Azure Datalake Gen1",