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.5.tar.gz
(69.9 kB
view details)
Built Distribution
cloudsync-0.1.5-py3-none-any.whl
(274.4 kB
view details)
File details
Details for the file cloudsync-0.1.5.tar.gz
.
File metadata
- Download URL: cloudsync-0.1.5.tar.gz
- Upload date:
- Size: 69.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5771dbe6020ea820b1d8b7bd0284e847a863a804b4d00bed348af6d6e38d5bdd |
|
MD5 | 988b473e55aba9f8b5c9e9c14e974bcd |
|
BLAKE2b-256 | 6063bd4c4fea8600cbe612d19c7e74f03dbef1f43a54a2fd94d015cde56d531e |
File details
Details for the file cloudsync-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.1.5-py3-none-any.whl
- Upload date:
- Size: 274.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05d5da1b15af39777dc97047c4e8b4a034577431f36e839f768f18c197671d86 |
|
MD5 | 6b6fa29ff1efa76e2e77256244883fc9 |
|
BLAKE2b-256 | 91faefea43555fc9464ea6ed276a82b9b780bbc6f0ad7623a5a258261e449c2a |