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.19a9.tar.gz
(186.6 kB
view details)
Built Distribution
cloudsync-1.3.19a9-py3-none-any.whl
(179.6 kB
view details)
File details
Details for the file cloudsync-1.3.19a9.tar.gz
.
File metadata
- Download URL: cloudsync-1.3.19a9.tar.gz
- Upload date:
- Size: 186.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43bd9600661709e26f002b55ede5271a70f255063f68146f88b4a843e84d1d68 |
|
MD5 | e7b45b73e362f2d31271dcc180d92922 |
|
BLAKE2b-256 | 6f5bb467a667db3a40bd8bd592f727f48c3e615fcd1e196a95e96d189e410a82 |
File details
Details for the file cloudsync-1.3.19a9-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.3.19a9-py3-none-any.whl
- Upload date:
- Size: 179.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52b8e1e8fa2cb2e1b731bc3a46aa919fe68b22eb9adc992ea03a6bae5abeb8e4 |
|
MD5 | 72367bc97de3e3e0940896a8f06a4327 |
|
BLAKE2b-256 | 061e91c0a5c5d645f64b10929c27514cdeb7954159e5dbe1e0f0f1aba8e37840 |