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.13.tar.gz
(112.9 kB
view details)
Built Distribution
cloudsync-0.3.13-py3-none-any.whl
(475.7 kB
view details)
File details
Details for the file cloudsync-0.3.13.tar.gz
.
File metadata
- Download URL: cloudsync-0.3.13.tar.gz
- Upload date:
- Size: 112.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90525ab261d84b5c84f481fd18185833df7b6b7173d67bc5db3d14b4ba443d52 |
|
MD5 | a2c4be4f4925e84536998c1e98f9a941 |
|
BLAKE2b-256 | 2879665ea51139130b874f12e43bbed8098c2e427da36d5638826240e3f24174 |
File details
Details for the file cloudsync-0.3.13-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.3.13-py3-none-any.whl
- Upload date:
- Size: 475.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0907ee542bc10ae3b873959384442e1022e51c19c9e643905ba7cc3b1300b3e5 |
|
MD5 | 82914000d197e7db38c2e8f4f6a5327f |
|
BLAKE2b-256 | ce28b554a9e398a21dcdb2cfe8b8692ea5f177f1d54c37d6090af331881803be |