Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 256 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 256 Bytes

fsspec-rclone

Implementation of fsspec for rclone.

A simple example:

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