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.20.tar.gz
(75.9 kB
view details)
Built Distribution
cloudsync-0.1.20-py3-none-any.whl
(305.7 kB
view details)
File details
Details for the file cloudsync-0.1.20.tar.gz
.
File metadata
- Download URL: cloudsync-0.1.20.tar.gz
- Upload date:
- Size: 75.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b493109523bee620b18553e27b8a9ba00df675cf9fb2ad7780f68e0ea47ef9a |
|
MD5 | fbc91e8e4d6474c24b20ed382a916edd |
|
BLAKE2b-256 | 8f71382d9c939db8b1f32a851706b918b2abcde356323dd7c277a25d748ec0ca |
File details
Details for the file cloudsync-0.1.20-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.1.20-py3-none-any.whl
- Upload date:
- Size: 305.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d765c8f9e76625bdeb21b7345fdb2e1a5940b712751f6b4d5298d03d8dcc7b9f |
|
MD5 | ca6ae176d4e993ebcd6f9b20af407911 |
|
BLAKE2b-256 | e56a1da5022db780a43dd534844c7fcaa1179c93fc8418d4ed942e34933fd16a |