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.17.tar.gz
(74.0 kB
view details)
Built Distribution
cloudsync-0.1.17-py3-none-any.whl
(296.3 kB
view details)
File details
Details for the file cloudsync-0.1.17.tar.gz
.
File metadata
- Download URL: cloudsync-0.1.17.tar.gz
- Upload date:
- Size: 74.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63f20cb6a3f1b7c8540a7f76252cf9b7ec9b7a521ac163a07d14edbc94788b76 |
|
MD5 | dd5bc9dda244bc4880433fe13ffcce3f |
|
BLAKE2b-256 | bbbade1d9b3eb6f28d92d615925b7a697f530e0f696d47876dc3b37d7f572e78 |
File details
Details for the file cloudsync-0.1.17-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.1.17-py3-none-any.whl
- Upload date:
- Size: 296.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f71e4341cb84ff4883859a4f6a9342de38f7e1ea22d7e116b44f1cdfce76306d |
|
MD5 | 9a80351506c702039bf30667803e626c |
|
BLAKE2b-256 | e7b10bb2c1b548fbc0cf0c65ad074fd0f18738ce3113de4f63db6ad9fa21485e |