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
- Host: GitHub
- URL: https://github.com/ivandeex/fsspec-rclone
- Owner: ivandeex
- License: mit
- Created: 2021-10-15T11:31:01.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-19T20:36:53.000Z (over 3 years ago)
- Last Synced: 2025-03-27T03:12:34.094Z (2 months ago)
- Topics: fsspec, rclone
- Language: Python
- Homepage: https://pypi.org/project/fsspec-rclone/
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fsspec-rclone
Implementation of fsspec for rclone.
A simple example:
```python
import fsspecwith 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