filesystem_spec icon indicating copy to clipboard operation
filesystem_spec copied to clipboard

A specification that python filesystems should adhere to.

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

For some file providers it's handy to get a url for a specfici file. For example for S3 you may want a pre-signed url you can give to another server...

@CodyCBakerPhD and I have been exploring different ways of parallelizing with http fsspec. We have found that you can use multiple processes in joblib (1), and parallelizing over threads using...

If we get a 400 HTTP error while trying to open a URL with: ```python fsspec.open(url) ``` this is not caught and instead an `IndexError` is raised: ``` IndexError: list...

Checking `size` may require a call to the async `_info` function. On line 277, `_cp_file` checks if `f1.size` is async (`callback.set_size(await maybe_await(f1.size))`), but then later it simply references `f1.size` which...

xref: https://github.com/fsspec/community/issues/8

The [`__eq__` method of `AbstractBufferedFile`](https://github.com/fsspec/filesystem_spec/blob/95eb5f94d3230fcfa95052eef6cad1d951431ff5/fsspec/spec.py#L1553) assumes that the `other` element of the comparison has the `.mode` attribute: https://github.com/fsspec/filesystem_spec/blob/95eb5f94d3230fcfa95052eef6cad1d951431ff5/fsspec/spec.py#L1553 However, this is not always the case. E.g. one could decide to...

``` import fsspec s3_fs = fsspec.filesystem("s3", key="xxxxxx', secret="xxxxxxxxx", client_kwargs={ "region_name": 'xxxxxxx', }) s3_fs.ls('s3://') ``` It lists all the buckets but when i use `s3_fs.ls('s3://Bucket_name') ` It returns empty Same bucket...

awswrnagler installed latest version for fsspec - ![image](https://user-images.githubusercontent.com/102376854/223785273-8b4a6222-70aa-461d-b0ed-3a4a45b6ff06.png) error - ![image](https://user-images.githubusercontent.com/102376854/223785186-ceef5532-d8f1-4eaa-a480-9140b1788c98.png)

I saw the `AbstractArchiveFileSystem` switched to `detail=True` in https://github.com/fsspec/filesystem_spec/commit/0f3ecd8e629043646ab19b1a2b00d895f0553a81. There are some inconstencies with other filesystems which have `detail=False` (e.g. the local filesystem). with `fsspec==2023.3.0` Currently: ```python >>> import fsspec...

I was expecting there to be a February release but looks like there wasn't one. I am curious about the release cadence of fsspec, I don't see a document in...