cloudsync enables simple cloud file-level sync with a variety of cloud providers
Project description
cloudsync
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-0.3.4.tar.gz
(102.1 kB
view details)
Built Distribution
cloudsync-0.3.4-py3-none-any.whl
(421.7 kB
view details)
File details
Details for the file cloudsync-0.3.4.tar.gz
.
File metadata
- Download URL: cloudsync-0.3.4.tar.gz
- Upload date:
- Size: 102.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 622032850b1e9e0c4f80c339f93918f5f91aa6fd4adf751610c91055098a481a |
|
MD5 | f4526fbe29b530c6b656ca67450001bc |
|
BLAKE2b-256 | 3186211ed0d6f5a0ad063d73db549d4660a853ef30e1dba70b8c59c2bc6ed0b3 |
File details
Details for the file cloudsync-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.3.4-py3-none-any.whl
- Upload date:
- Size: 421.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d229b4ee2e77cedde2212b85a7703f62179eb23580b7ec90483a9cd3fe7738d |
|
MD5 | 99f01c4064ce2b4fb547047c713a202a |
|
BLAKE2b-256 | 6aff78a21d83650587579cb06247eba7b9e655bb4676346abd34f3975e642c2f |