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.12.tar.gz
(71.8 kB
view details)
Built Distribution
cloudsync-0.1.12-py3-none-any.whl
(282.5 kB
view details)
File details
Details for the file cloudsync-0.1.12.tar.gz
.
File metadata
- Download URL: cloudsync-0.1.12.tar.gz
- Upload date:
- Size: 71.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bb2c339ae327de738878fee41c89405202121d55072c29928ad1c8b308500ad |
|
MD5 | a0ce13342ec1dcd6d4d23e35237b8423 |
|
BLAKE2b-256 | b1441fd61db83214f2c85bf89736970fe64ca75d9e0e37a83238b373dc3b279d |
File details
Details for the file cloudsync-0.1.12-py3-none-any.whl
.
File metadata
- Download URL: cloudsync-0.1.12-py3-none-any.whl
- Upload date:
- Size: 282.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.21.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8b51d8078fff48b0b79b58509c653fe06b335e1624e93fe7cb4626d3620387e |
|
MD5 | b1b9e5cf426b6e1fab6b7fb4707a06d4 |
|
BLAKE2b-256 | ec3badcc903bde018a8cddbaa33adee59c6651c5e342ecdfb7bd1eaa13de0e25 |