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.6.tar.gz
(171.6 kB
view details)
Built Distribution
cloudsync-1.3.6-py3-none-any.whl
(163.7 kB
view details)
File details
Details for the file cloudsync-1.3.6.tar.gz
.
File metadata
- Download URL: cloudsync-1.3.6.tar.gz
- Upload date:
- Size: 171.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c1533479e0ea6ef6c2e517b93af0e11d43de5a53c952092144c35ff187d4fd3 |
|
MD5 | 5548716a818c8eb55066589d2f0a7a08 |
|
BLAKE2b-256 | 1089ff7698d41a599c1aaa3e73341fd6faf7e5e911c5e2d795987e2cab3b38bc |
File details
Details for the file cloudsync-1.3.6-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.3.6-py3-none-any.whl
- Upload date:
- Size: 163.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 479a6c21cd3dc1d92af2d4b153f5ed5b15d87e259e16882c76dc8998eded20f1 |
|
MD5 | b1aa8fe3c2dbfd0132bf2a097434e167 |
|
BLAKE2b-256 | c00d9a12d7267733f99d368ce77833f9b173b37a2e1765cac8526d1bdbe94072 |