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.19a4.tar.gz
(186.2 kB
view details)
Built Distribution
cloudsync-1.3.19a4-py3-none-any.whl
(179.0 kB
view details)
File details
Details for the file cloudsync-1.3.19a4.tar.gz
.
File metadata
- Download URL: cloudsync-1.3.19a4.tar.gz
- Upload date:
- Size: 186.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42c3b0503b5fe57d13a34f4d0221c03286ff81e011699c4c2dbf0c9c8562f9f0 |
|
MD5 | 7c99d8797e70b1e0e70c9c118a8c28e1 |
|
BLAKE2b-256 | b52db8015d1082ca4cff0a4a38cbc86a76ab6c1027ca7490e5d657ec33e3c785 |
File details
Details for the file cloudsync-1.3.19a4-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-1.3.19a4-py3-none-any.whl
- Upload date:
- Size: 179.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8896944048ed655eb0a7807e59e23bfd1c56389bcd8706e1b8bdeedda725cd46 |
|
MD5 | 8f6a5610bfd08c936041761464240b56 |
|
BLAKE2b-256 | 66ce95830b3a3e9afc3bc67b90d77cba11165ef07cfd9e4cdaf4a2dca3f4a13c |