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.4.tar.gz
(68.4 kB
view details)
Built Distribution
cloudsync-0.1.4-py3-none-any.whl
(268.8 kB
view details)
File details
Details for the file cloudsync-0.1.4.tar.gz
.
File metadata
- Download URL: cloudsync-0.1.4.tar.gz
- Upload date:
- Size: 68.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96a8d8a000c60ee4f469f592f1611ab300f1d1252bb9dd62805d8f5ea30b7724 |
|
MD5 | 08a2026b3a5b80deb29a1b5b0411fd5b |
|
BLAKE2b-256 | 98c40944b3fbd18dba5fc6340a629775d7e03ec51a84ceb189c6108345a730df |
File details
Details for the file cloudsync-0.1.4-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.1.4-py3-none-any.whl
- Upload date:
- Size: 268.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b5e3c3e010fde75be23b3cafe4ca8c66d37b6d21cf9963dd887ec72360391f5 |
|
MD5 | b0b8a4bbb32049e063037537de812c8f |
|
BLAKE2b-256 | 599e162831f6b130f6db2db6039ba1152874aa4d4675d1603cdbcc73cf5ecf59 |