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.1.24.tar.gz
(79.3 kB
view details)
Built Distribution
cloudsync-0.1.24-py3-none-any.whl
(318.6 kB
view details)
File details
Details for the file cloudsync-0.1.24.tar.gz
.
File metadata
- Download URL: cloudsync-0.1.24.tar.gz
- Upload date:
- Size: 79.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2eb4ce838d1734bb82302fe9ae6caacafbc093a3b33c9c6e361f66f22c830a0b |
|
MD5 | 051a8d406cbe2c14c617488b8784d963 |
|
BLAKE2b-256 | 6dba970752b4b6ed06a4960a143c894155684ae501bd6651b3b9016b908546b0 |
File details
Details for the file cloudsync-0.1.24-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.1.24-py3-none-any.whl
- Upload date:
- Size: 318.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d9c0cba437ef0fb5b5ea8ad434c19d98fc79271014c732621ca7b4641f732af |
|
MD5 | 9363ea6da636485654b8c37b170bfa9e |
|
BLAKE2b-256 | dad1f68caa97069e7292bb9159040cdf6392a9ad5447d418d8c8845547689114 |