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-1.1.1.tar.gz
(116.7 kB
view details)
Built Distribution
cloudsync-1.1.1-py3-none-any.whl
(483.5 kB
view details)
File details
Details for the file cloudsync-1.1.1.tar.gz
.
File metadata
- Download URL: cloudsync-1.1.1.tar.gz
- Upload date:
- Size: 116.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5b0c4447bfc00e4a49d627a3668b0bdaec5b6c09626f4bcdd431b52b48ab75b |
|
MD5 | 05417129163601ac8a02749cf75f5a04 |
|
BLAKE2b-256 | 4c3d4751322618be2f280eee9342f97d68332c717ac81202f534a7ce4d8c9c25 |
File details
Details for the file cloudsync-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.1.1-py3-none-any.whl
- Upload date:
- Size: 483.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12d7de1d258656ffe61261ecbb5bdc504ebf7c368168f706ec7874e6167e78c2 |
|
MD5 | c2c4e9f08ee39f49def0608a993131a8 |
|
BLAKE2b-256 | 43e2c155a5062c0af11b95750e658f694da56a17e439ea1c8295829a8e511d5a |