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.3.dev1.tar.gz
(103.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cloudsync-0.3.3.dev1.tar.gz.
File metadata
- Download URL: cloudsync-0.3.3.dev1.tar.gz
- Upload date:
- Size: 103.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b353324fd571f815595578046d30deb329e505632ad66e1123a92fdc1756b11
|
|
| MD5 |
5a1c744a5ae1ab84f84f5f44eff57272
|
|
| BLAKE2b-256 |
1a6b347d7c223b0296f952919c09bfedfeb79c201c94d043a6e62f5a7a03a35e
|
File details
Details for the file cloudsync-0.3.3.dev1-py3-none-any.whl.
File metadata
- Download URL: cloudsync-0.3.3.dev1-py3-none-any.whl
- Upload date:
- Size: 423.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34405f0afbf2c714b8bf4fea16c65787d485c9f1073b6247ff66d5b2a1fb48e9
|
|
| MD5 |
999f58781f85ff05cd7072c3233e6049
|
|
| BLAKE2b-256 |
d7c44a89515b5f63ce79f083b453159fc91fb38361d82c887bd0dbff9ae7fe25
|