This release now has a improved `AsyncLocalFileSystem` that uses `LocalFileSystem`, so they can be reused on places where `LocalFileSystem` can be used. Similarly, async methods wrap `LocalFileSystem`'s synchronous methods, so they also work in the same way.
Usage:
python
from fsspec import filesystem
fs = filesystem("asynclocal")
or,
python
from morefs.asyn_local import AsyncLocalFileSystem
fs = AsyncLocalFileSystem()
What's Changed
* refactor: use sync methods in thread from LocalFileSystem in async methods by skshetry in https://github.com/iterative/morefs/pull/12
* sync to latest localfs by skshetry in https://github.com/iterative/morefs/pull/13
* Require latest fsspec for asynclocalfs by skshetry in https://github.com/iterative/morefs/pull/14
**Full Changelog**: https://github.com/iterative/morefs/compare/0.0.3...0.1.0