sshfs
sshfs copied to clipboard
sshfs - SSH/SFTP implementation for fsspec
Hello. Trying to remove directories using `SSHFileSystem` via `rmdir` fails silently. Appears to be missing the synchronous wrapper for `_rmdir`. i.e. the equivalent of: `mkdir = sync_wrapper(_mkdir)` and thus ends...
Hello, while using sshfs in fsspec.open_files(), I discovered that stat() is called for the parent directory of the wanted files, even if it is already clear that this must be...
Hi, I have a feature request. Could the `sshfs.SSHFileSystem` get an implementation for `_cat_file`? I'm trying to use `sshfs` with `zarr`, but hit a `NotImplementedError` when I try to construct...
https://github.com/ronf/asyncssh/issues/537#issue-1556251100
I use an agent which holds many private keys and specify which private key to use for which remote by specifying `IdentityFile .pub` per host in my ssh config. This...
The [v2.19.0 release](https://github.com/ronf/asyncssh/releases/tag/v2.19.0) of `asyncssh` has added support for hostname canonicalization. With this change, two new arguments were added to `SSHClientConfig.load`: `canonical` and `final`. We should also pass these parameters...
not yet sure if relates to - https://github.com/fsspec/sshfs/issues/46 but ATM it seems it is impossible to use relative path :-/ Trying with a simple `open` and this helper script ```python...
I am trying to use this library with FUSE. However, I have noticed: - The FUSE "fork into background" functionality results in [unkillable I/O hangs](https://unix.stackexchange.com/questions/5642/what-if-kill-9-does-not-work/713621#713621) because `SSHFileSystem` seems to start...
Fixes #49 Note that the `limits` property will be added with [this commit](https://github.com/ronf/asyncssh/commit/b5742a557c3770346f1d3471dac931640f928cbe), which has not been released yet. It would be prudent to wait for this API to stabilize...
Asyncssh is going to be improved to add a better default block size for file transfers by [querying the server for the maximal supported one](https://github.com/ronf/asyncssh/issues/691#issuecomment-2381029609). In my case, this results...