cloudsync enables simple cloud file-level sync with a variety of cloud providers
Project description
cloudsync README
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-1.3.21.tar.gz
(186.6 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
cloudsync-1.3.21-py3-none-any.whl
(179.5 kB
view details)
File details
Details for the file cloudsync-1.3.21.tar.gz.
File metadata
- Download URL: cloudsync-1.3.21.tar.gz
- Upload date:
- Size: 186.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e453c58a8da95b238db1535cf49280d2064810b9ae62e11c094f0e78145284a
|
|
| MD5 |
8d061025c74dbac84693044bab07aa69
|
|
| BLAKE2b-256 |
fd0c340a6a97ddb03ce54904d639625f5bac9f631ba609549eaaf42c17c37484
|
File details
Details for the file cloudsync-1.3.21-py3-none-any.whl.
File metadata
- Download URL: cloudsync-1.3.21-py3-none-any.whl
- Upload date:
- Size: 179.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9ccd8e9af82b87acb48170b1c92f9ba614faabf4c20894e1d5e567c2d6c1d7f
|
|
| MD5 |
d920c6d3b8a0ba879c935f01c02e7f96
|
|
| BLAKE2b-256 |
69199c9f9490b9348a4d1b0e57f0efef1ee8ce4e30609c8a7ef7d68c73719b2b
|