cloudsync enables simple cloud file-level sync with a variety of cloud providers
Project description
cloudsync README
Python Cloud Synchronization Library
pip install cloudsync
Example:
from cloudsync import CloudSync, CloudSyncProvider
local = CloudSyncProvider("local", path="/usr/home/alice/test", monitor=True)
remote = CloudSyncProvider("gdrive", path="/test-folder")
remote.connect()
sync = CloudSync(local, remote)
sync.start()
with open("/usr/home/alice/test/hello.txt", "w") as f:
f.write("hello")
# give the monitor a second to notice the change
# alternatively we can "poke" the local provider, forcing a sync
time.sleep(1)
sync.wait(timeout=10)
# using no_poke to deliberately trick our sync into *not* knowing about the rename
remote.rename("/test-folder/hello.txt", "/test-folder/goodbye.txt", no_poke=True)
# we should still sync properly because of the event cursor
while not os.path.exists("/usr/home/alice/test/goodbye.txt"):
time.sleep(1)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cloudsync-1.3.19a8.tar.gz
(186.4 kB
view details)
Built Distribution
cloudsync-1.3.19a8-py3-none-any.whl
(179.2 kB
view details)
File details
Details for the file cloudsync-1.3.19a8.tar.gz
.
File metadata
- Download URL: cloudsync-1.3.19a8.tar.gz
- Upload date:
- Size: 186.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 838f4110ec1e7c122d95eed88e12946825a14c61580e186d891a4066c22f75c0 |
|
MD5 | f42f48b0ca6d01828319f7a7043689a2 |
|
BLAKE2b-256 | cc406db719b7ea6f6f95bbc54f5b3b53deffd091cb2c79ec14f60fdc62b9aedf |
File details
Details for the file cloudsync-1.3.19a8-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.3.19a8-py3-none-any.whl
- Upload date:
- Size: 179.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7100988a8b6859ef08e369b56387183767d3f14b5f6fb0cf5e87547c85eaa4c6 |
|
MD5 | 1c2d65ecfd3c7cf5b7c092508678fe58 |
|
BLAKE2b-256 | dd75e0ca42486c6aa9a45bce69a8e5f289138309eff5b1fdc04a5aea2417d931 |