An open API service indexing awesome lists of open source software.

https://github.com/ivandeex/fsspec-rclone

python fsspec implementation for rclone
https://github.com/ivandeex/fsspec-rclone

fsspec rclone

Last synced: about 2 months ago
JSON representation

python fsspec implementation for rclone

Awesome Lists containing this project

README

        

# fsspec-rclone

Implementation of fsspec for rclone.

A simple example:

```python
import fsspec

with fsspec.open("rclone://sftp:host=localhost,user=myuser,pass=mypass,config=/etc/rclone/rclone.conf:path/to/file", "r") as f:
print(f.read())
```

TBC