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.2.tar.gz
(118.1 kB
view details)
Built Distribution
cloudsync-1.2.2-py3-none-any.whl
(488.7 kB
view details)
File details
Details for the file cloudsync-1.2.2.tar.gz
.
File metadata
- Download URL: cloudsync-1.2.2.tar.gz
- Upload date:
- Size: 118.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4920dc9a08f5100e6f5f584800b901e06508ecc1ff1aadefdd7cb831f830c59c |
|
MD5 | ecb11a4efa17cadedec3ebda3d201b74 |
|
BLAKE2b-256 | 27711511e1547c1a4def24d23c61407b5af8cf6d4d3bb68af9551a1d93b1014f |
File details
Details for the file cloudsync-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.2.2-py3-none-any.whl
- Upload date:
- Size: 488.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ad29ce28c5f9eeab49f9fe1731938334ff5583b355cbddd6d996e78ed60d163 |
|
MD5 | b588dfc30498f94e1b6d7a9829b898c5 |
|
BLAKE2b-256 | 2a4d3968252ca6266a901f7bf9f6d326e9abf04b20b4e6ececda06d2724fc484 |