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.27.tar.gz
(98.2 kB
view details)
Built Distribution
cloudsync-0.2.27-py3-none-any.whl
(403.3 kB
view details)
File details
Details for the file cloudsync-0.2.27.tar.gz
.
File metadata
- Download URL: cloudsync-0.2.27.tar.gz
- Upload date:
- Size: 98.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18749cbe79a08f43a18801e4de67a841d71be88b744b12ee669c6485cb3a6ea8 |
|
MD5 | c2ccd676ad0a025400a5bf0aa4d187a2 |
|
BLAKE2b-256 | 7c29c789dcc547c0c0cdd30a3693cd037299cb3e18f716c2b125072b8a7d15ec |
File details
Details for the file cloudsync-0.2.27-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.2.27-py3-none-any.whl
- Upload date:
- Size: 403.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 836c502d2f49720bb2afd2012f6c318f66c1fe3d3aa62aa751ad2f9b8a32d1f3 |
|
MD5 | 9656a23e27a00b908510959d81fcbffd |
|
BLAKE2b-256 | d80a582a4fec49aafb1c2957950e4bee954a31bca451c0249f4fb06baa182ea6 |