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.2.7a1.tar.gz
(142.1 kB
view details)
Built Distribution
cloudsync-1.2.7a1-py3-none-any.whl
(134.1 kB
view details)
File details
Details for the file cloudsync-1.2.7a1.tar.gz
.
File metadata
- Download URL: cloudsync-1.2.7a1.tar.gz
- Upload date:
- Size: 142.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c59d7ff40bd514a43e01e625fb1b83fe397212688e3505dd283b86b2baccf0d2 |
|
MD5 | 6444786d402aabb74103a1ac889a266a |
|
BLAKE2b-256 | 2c8e8c10ffe41177c3ab4249f17695d66b0a5b2d3e63bdc2130d128d1531978d |
File details
Details for the file cloudsync-1.2.7a1-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.2.7a1-py3-none-any.whl
- Upload date:
- Size: 134.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01e5c29d3596792460c6322626478762bdb5b1c6ad2778fd0b46c65788d57a18 |
|
MD5 | 2e8edd2d9e92ed784309fc7173553808 |
|
BLAKE2b-256 | f31d04c3b9be8b0426d80141311a30aaabe08bac36a142588f02894b520b347d |