Skip to content

0.1.0: `AsyncLocalFileSystem`

Compare
Choose a tag to compare
@skshetry skshetry released this 19 Oct 15:52
· 42 commits to main since this release
7128c74

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:

from fsspec import filesystem

fs = filesystem("asynclocal")

or,

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 #12
  • sync to latest localfs by @skshetry in #13
  • Require latest fsspec for asynclocalfs by @skshetry in #14

Full Changelog: 0.0.3...0.1.0