RClone Manager
Define multiple tasks using rclone to sync files from one cloud storage to another.
Features
- Define multiple tasks
- Define timeouts for each task
- Callbacks to run scripts after tasks complete
- Run tasks in parallel
- Save logs to files
Installation
Requirements
Install from PyPI
pip install rclone-manager
Example Usage
Move files from Local to Google Drive
from rclone_manager import RClone
src = './test_folder'
dst = 'gdrive:rclone-test-folder'
RClone(src, dst).move().run()
print('Done')
Copy files but terminate whenever you want
from rclone_manager.rclone import RClone
src = './test_folder'
dst = 'gdrive:rclone-test-folder'
rclone = RClone(src, dst).copy()
rclone.run(wait=False)
# Do something else
rclone.terminate()
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rclone-manager-0.4.0.tar.gz
(5.8 kB
view details)
File details
Details for the file rclone-manager-0.4.0.tar.gz.
File metadata
- Download URL: rclone-manager-0.4.0.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/4.0.1 CPython/3.9.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85f84a8a132e271471fbfa2aab287c6a395591e961e025c2ff754de006fa2a8e
|
|
| MD5 |
e8a96daad3790bd79f659930ad9c9c30
|
|
| BLAKE2b-256 |
f40f7c058e0c4522f09a0fea6f148d95057da43b21608c3263ad8e94a87db496
|