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.2.tar.gz
(99.7 kB
view details)
Built Distribution
cloudsync-0.3.2-py3-none-any.whl
(410.2 kB
view details)
File details
Details for the file cloudsync-0.3.2.tar.gz
.
File metadata
- Download URL: cloudsync-0.3.2.tar.gz
- Upload date:
- Size: 99.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0dade88e815b82f871720d56a0cce39262205482793940b57ef6d10918c9c3de |
|
MD5 | 1f207c9ec100d4cf8084c158d2955c07 |
|
BLAKE2b-256 | 1b8de091756f8d5986ef567a4df297fd339e7bd8480c9f50e2d3314fc16df054 |
File details
Details for the file cloudsync-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.3.2-py3-none-any.whl
- Upload date:
- Size: 410.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4de50d153b79e9ac6b345da892bb9ae2e989082fb7b1c828d9ab3001dc66c8ce |
|
MD5 | c92ba252cb338f32003bc83fffdabe13 |
|
BLAKE2b-256 | ece40db3e09c72f9f0887397b74d08a891fa2caab10436482ef2417c240eb512 |