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.29a3.tar.gz
(99.5 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.2.29a3-py3-none-any.whl
(408.9 kB
view details)
File details
Details for the file cloudsync-0.2.29a3.tar.gz.
File metadata
- Download URL: cloudsync-0.2.29a3.tar.gz
- Upload date:
- Size: 99.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8fc848c8595bb1f674c7a6e77e132bc80b2797f06cb0141819fc586a4c01f41
|
|
| MD5 |
72568149a30d7f6465693ebaa28ecddb
|
|
| BLAKE2b-256 |
98c36e08df944e55762884fa7d3e87f8ef8df1e9cead663c36cbc40cb99552d3
|
File details
Details for the file cloudsync-0.2.29a3-py3-none-any.whl.
File metadata
- Download URL: cloudsync-0.2.29a3-py3-none-any.whl
- Upload date:
- Size: 408.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.22.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90a6f990106314429fee0baac8e2e17b18cd285b86909470ca70000520ddca6b
|
|
| MD5 |
725ca69da1dbdbfcc8155052201b860a
|
|
| BLAKE2b-256 |
704e18f864b27eaf8ea7c25486e70be067c8a91eea3e1d216ce611d51c64a8a0
|