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.5.tar.gz
(170.9 kB
view details)
Built Distribution
cloudsync-1.3.5-py3-none-any.whl
(163.2 kB
view details)
File details
Details for the file cloudsync-1.3.5.tar.gz
.
File metadata
- Download URL: cloudsync-1.3.5.tar.gz
- Upload date:
- Size: 170.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cbf3d29548a472d3a446c9e37bc46a52b63411214bfacb8cdc8ed3186a596e5 |
|
MD5 | 130e7c17dc5522c2cfd3d3c783400187 |
|
BLAKE2b-256 | f04c026d285bbba4f9fe4a23d845186ed56c32a79d9c14b9497bd1e8541af1fb |
File details
Details for the file cloudsync-1.3.5-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.3.5-py3-none-any.whl
- Upload date:
- Size: 163.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ba203542ff45fccdac8cd6ccc182db115fdc196de8192f2df98875d1c0bb68c |
|
MD5 | f238ca900ebb26610b081afd5ce10a17 |
|
BLAKE2b-256 | 893d20f76fccffd761d20ee21ed4f94c0da344d16b9e2fc5b9c77734f7f479d8 |