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.dev1.tar.gz
(105.5 kB
view details)
Built Distribution
File details
Details for the file cloudsync-0.3.4.dev1.tar.gz
.
File metadata
- Download URL: cloudsync-0.3.4.dev1.tar.gz
- Upload date:
- Size: 105.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2ca4f38d398813431d28d4df0d8962db7e1e5e2184cf7b3db01f739acd0844c |
|
MD5 | 325e55cb7056a70d78bb584da45668bc |
|
BLAKE2b-256 | 68ab9332266206ed6e001d8bca3305a9dafc5fe5ffd12603456a95439c2cfe6f |
File details
Details for the file cloudsync-0.3.4.dev1-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.3.4.dev1-py3-none-any.whl
- Upload date:
- Size: 429.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00196d7fc4fc33b2353e0d17a5a78d7dd6fda4c69821535ceb2e8c2639c5e4fa |
|
MD5 | 34ef6f3b2cb930e5a605f2818ae61e8f |
|
BLAKE2b-256 | 036942896280701ce5eaf67197396a6d940dd079d4efbc9d8a90cfe57a1f80ba |