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.35.tar.gz
(82.7 kB
view details)
Built Distribution
cloudsync-0.1.35-py3-none-any.whl
(341.9 kB
view details)
File details
Details for the file cloudsync-0.1.35.tar.gz
.
File metadata
- Download URL: cloudsync-0.1.35.tar.gz
- Upload date:
- Size: 82.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 391326f59f134016f64fd8249a3e51dbdb255c05a92dc9e882e1c32188f141df |
|
MD5 | 3f460360001e4e44c2214f41764f3767 |
|
BLAKE2b-256 | 98ce28450d286ddf4162e510d779334894f207502e6f78147d0a2fe596885654 |
File details
Details for the file cloudsync-0.1.35-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.1.35-py3-none-any.whl
- Upload date:
- Size: 341.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f6838fe4c8e3793334bd1100ac9285a3790d4b6cd011087f675540e57302bed |
|
MD5 | 77565cde20e31348bb9494c4abb895cd |
|
BLAKE2b-256 | 1b4d9b97365a089ae51a7a3327555a0b6c468e29f3d96578a86bf2ead65740bf |