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

Just as fastparquet found, having all the compressors in the fast and compact cramjam library really makes things simple. I am suggesting that, if cramjam is installed, we should get...

I ran into an error using DirFileSystem with Azure Blob Storage. Here's the minimum code to expose this error: ```python import fsspec from fsspec.implementations.dirfs import DirFileSystem bucket = "my-bucket" fs...

Text: "For example to be able to access data in S3, you can use the optional pip install syntax below, or install the specific package required" but then the pip...

Currently, the only way (as far as I know) to specify `timeout` as part of `storage_options` requires instantiating an `aiohttp.ClientTimeout` object ```python In [46]: import aiohttp, fsspec In [49]: timeout...

Hi! Sorry if this issue is misplaced and should go to the adlfs package instead. I already created an issue there, but after thinking of it, maybe it is more...

Would it be helpful to standardize the ability to set the content type of files written by fsspec? Several backends have / are requesting the ability to set this (https://github.com/fsspec/s3fs/blob/4f289eaa34dfe8337a72f5a0148c41a44793fde0/s3fs/core.py#L971-L974,...

Hi there, I found some problems when I read an HDFS file by line when the open_mode is "rb". It works fine when the open_mode is "r" or the file...

In the DirFileSystem implementation, the `detail` parameter is set to `True` by default (see [here](https://github.com/fsspec/filesystem_spec/blob/master/fsspec/implementations/dirfs.py#L209) and [here](https://github.com/fsspec/filesystem_spec/blob/master/fsspec/implementations/dirfs.py#L200)) whereas for other implementations like LocalFileSystem, it is set to `False` (see [here](https://github.com/fsspec/filesystem_spec/blob/master/fsspec/implementations/local.py#L53))....

Is there is a way to recursively copy a directory between one file system and another? It seems like `put` is only restricted to `local -> fs` but not `fs...

Thanks for the wonderful library! I have an issue using data from a remote http url, here is a example snippet ( originally, the issue arose while using the dataset...