filesystem_spec icon indicating copy to clipboard operation
filesystem_spec copied to clipboard

A specification that python filesystems should adhere to.

Results 215 filesystem_spec issues
Sort by recently updated
recently updated
newest added

Hello, I would like to kindly request a change in the implementation of `AbstractFileSystem.exists()`, as it currently catches every exception that might get thrown without any notice. An in my...

Just a question - I would like to use the recursive mechanisms in fsspec to copy directories, but I also want to exclude some paths (for example `.git` directories). It...

Hello, I am using the build-in SFTP implementation to access an SFTP server. Unfortunately, this server is pretty slow, so I used globbing with the hope it will speed up...

Being able to get the configured or system default batch size from fsspec is useful when using filesystems that support an additional level of concurrency (beyond the existing fs methods...

We can only use rb mode in the HTTP file system for now. It will be great if we can support wb mode. https://github.com/fsspec/filesystem_spec/blob/61cdf52cd0aaf524945ffb83502be39fccaee363/fsspec/implementations/http.py#L350-L351

According to the [documentation of AbstractFileSystem](https://github.com/fsspec/filesystem_spec/blob/master/fsspec/spec.py#L541:L542), `glob` should act as `ls` when the path ends with `/`. But when using the `LocalFileSystem` method, [the trailing slash is removed](https://github.com/fsspec/filesystem_spec/blob/master/fsspec/implementations/local.py#L69) when `_strip_protocol`...

It would be nice to set a limit on the size of the caching filesystems. This would truly enable 'set and forget' kind of work instead of having to manually...

## Versions `fsspec==2023.6.0` ## Summary The check of `recursive` flag introduced by #1276 causes errors when `LocalFileSystem.rm(...)` tries to delete a symlink of a directory. ## POC Create a sample...

Hello! I am trying to read a csv stored in a remote s3 bucket with a / in the name, like this: `'s3://mybucket/path/7/update//nicktorba.part_00000'` When i run this code, I get...

I have written a Qt ItemModel for fsspec, what is tricky though is that there is no way to know which keys the "details" dictionary can contain for each filesystem...