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-1.2.4.tar.gz
(120.9 kB
view details)
Built Distribution
cloudsync-1.2.4-py3-none-any.whl
(499.5 kB
view details)
File details
Details for the file cloudsync-1.2.4.tar.gz
.
File metadata
- Download URL: cloudsync-1.2.4.tar.gz
- Upload date:
- Size: 120.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5179c3f2b4cce8f7000f87bcb7515159fdbfb10e0781ce6503fc19ebe684a97b |
|
MD5 | 2f1ad15b35395532611f4cbb455d6059 |
|
BLAKE2b-256 | 18bae82e2b80ccb58497494d2ff83ccddf7f5fa1fa609e9f3da95ec9884df1ec |
File details
Details for the file cloudsync-1.2.4-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.2.4-py3-none-any.whl
- Upload date:
- Size: 499.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | becedafc766c664ce2fbb1404e33d95c522601d2b1da990c7b3a452852409d1e |
|
MD5 | 8fcb410759715b45cf4cac2a23884609 |
|
BLAKE2b-256 | 857a277d4cd43ffcd466679eb69d3ebe6ebc57ebfac695fdcde7deeae3a84aaf |