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.2.25.tar.gz
(94.7 kB
view details)
Built Distribution
cloudsync-0.2.25-py3-none-any.whl
(395.9 kB
view details)
File details
Details for the file cloudsync-0.2.25.tar.gz
.
File metadata
- Download URL: cloudsync-0.2.25.tar.gz
- Upload date:
- Size: 94.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56197d0fbfca286502b9552a0ae5fdde0725d0c1f7836cb3bd55159e45791b45 |
|
MD5 | 4fefc8660c291c5fda5b6de90a367f3d |
|
BLAKE2b-256 | eea3804c0cfa89fe3d3c10cb3e8a1f1e708f57647408c8e0b7ea07607cbe7fbc |
File details
Details for the file cloudsync-0.2.25-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.2.25-py3-none-any.whl
- Upload date:
- Size: 395.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1120cb8261ffdefa398cd7430c232e032a7c6d337896f45f64217448e33b17e |
|
MD5 | e68ef22ab5b3b5188e02b04158093847 |
|
BLAKE2b-256 | 9c2f19b753857f87494f71106ffd4891be29b3a5d7b2e53c878c49919f2bccc1 |