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.3.1.tar.gz
(99.5 kB
view details)
Built Distribution
cloudsync-0.3.1-py3-none-any.whl
(409.3 kB
view details)
File details
Details for the file cloudsync-0.3.1.tar.gz
.
File metadata
- Download URL: cloudsync-0.3.1.tar.gz
- Upload date:
- Size: 99.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab092f366bb569465b2f8fda29588f388dfaab2ef5ff5acfa21c7b7c4efa0b48 |
|
MD5 | 87ab5008f826e12104d7baf1f77fe372 |
|
BLAKE2b-256 | 0ab8b6418e5126fb8ed15f1408bfb17b26869fcda800e16255cb12920fafbdb3 |
File details
Details for the file cloudsync-0.3.1-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.3.1-py3-none-any.whl
- Upload date:
- Size: 409.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b35320790b52c38497b089ba07ff9249f52c5d46729af5ecd20cb51dc28413f |
|
MD5 | 0e0eac54b94ba71b0f54a88bd4755503 |
|
BLAKE2b-256 | 6f6e047146e54a6ef277f536aa32785f56227564532aca200649e953c02940fd |