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.2.23.tar.gz
(93.3 kB
view details)
Built Distribution
cloudsync-0.2.23-py3-none-any.whl
(393.7 kB
view details)
File details
Details for the file cloudsync-0.2.23.tar.gz
.
File metadata
- Download URL: cloudsync-0.2.23.tar.gz
- Upload date:
- Size: 93.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2ff59f7c407464eea94f9105409860517430691055d64874305146d0496b458 |
|
MD5 | 06d71d157f5c7645238aa8df45cc7a64 |
|
BLAKE2b-256 | 8af7225d6f20dcf5307ed0d7e8524c23f9306daa618ae3853c2bb0cfb69af8cb |
File details
Details for the file cloudsync-0.2.23-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.2.23-py3-none-any.whl
- Upload date:
- Size: 393.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3616e51de232e590eac2bbf694989cdc52501fca7f9544f55ab39b67b317c4e |
|
MD5 | 7a1c158bcf8848be6028fcb27629fd4a |
|
BLAKE2b-256 | 8e881886086aa1308bb2b813261965cedab0e83ed47971e9d80f3862eb5599e2 |