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.6.tar.gz
(102.6 kB
view details)
Built Distribution
cloudsync-0.3.6-py3-none-any.whl
(425.1 kB
view details)
File details
Details for the file cloudsync-0.3.6.tar.gz
.
File metadata
- Download URL: cloudsync-0.3.6.tar.gz
- Upload date:
- Size: 102.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c431927a1e9665725417f107a769431be43d5848a1c7df74d120084563fd8509 |
|
MD5 | 29b07756cfc5f5059a945a769cb63b6a |
|
BLAKE2b-256 | d45c4271347e16f254b54851bfc4a8135316069ac5a9050b64e73b3e0aaf4b0b |
File details
Details for the file cloudsync-0.3.6-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.3.6-py3-none-any.whl
- Upload date:
- Size: 425.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab954b90b1d12ae4bd3d0cbfd87248e2e87742bb8ce13f910c2ae223f7dfb2c7 |
|
MD5 | db765a2446b16b70cbe199a1c810b27a |
|
BLAKE2b-256 | be5c467ddb6a67cc30f5bff1fc77c362975f1323ac12112dc22f24092ca20fdc |