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.3.18a3.tar.gz
(186.3 kB
view details)
Built Distribution
cloudsync-1.3.18a3-py3-none-any.whl
(179.1 kB
view details)
File details
Details for the file cloudsync-1.3.18a3.tar.gz
.
File metadata
- Download URL: cloudsync-1.3.18a3.tar.gz
- Upload date:
- Size: 186.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a92195d53bcffa38ba2df28626bba55f1d52a240f57487459c41e78cd4ddea7f |
|
MD5 | c4ab94ef2a628c0e0ea9464ddca16682 |
|
BLAKE2b-256 | 78650e5a4a65a4ec0fc64e1d02817f809204f8907882a28cb87b1a2a9664da0d |
File details
Details for the file cloudsync-1.3.18a3-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.3.18a3-py3-none-any.whl
- Upload date:
- Size: 179.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 60fd859a6c437c5e21fb72d94d70d24c1a1cd5c35338b20e6580f7bedf9f1aec |
|
MD5 | 53375759479f698e2f95a7985f49a3f8 |
|
BLAKE2b-256 | 9df28ecbb738a243b6aa7462bd6ce70b76c14f71da5109878ea3301fb15d02c9 |