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.3.tar.gz
(53.3 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-0.1.3-py3-none-any.whl
(203.4 kB
view details)
File details
Details for the file cloudsync-0.1.3.tar.gz.
File metadata
- Download URL: cloudsync-0.1.3.tar.gz
- Upload date:
- Size: 53.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
567c0ffc4c59667d5c4d0fa04cc93baeba53e028e736b842ead6c092aab8dbf2
|
|
| MD5 |
da8c4343cad6e66db7b05f20dbd1a8b7
|
|
| BLAKE2b-256 |
b1345b52d0d0ee733f72b6cfb5b772d484979286bb826a3e6d73b7566e8c6e36
|
File details
Details for the file cloudsync-0.1.3-py3-none-any.whl.
File metadata
- Download URL: cloudsync-0.1.3-py3-none-any.whl
- Upload date:
- Size: 203.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a039c573e0909e5ebdb843dc6d427f24af04673b9469a100e2a225c8bda2efe5
|
|
| MD5 |
a81394c7c5ff2b2c1874c8b0303fac7e
|
|
| BLAKE2b-256 |
d5db35ae87fb142a148ee01a12d1f62dde54891b80dff9af3b653a6630268bb9
|