Skip to main content

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.7.tar.gz (84.9 kB view details)

Uploaded Source

Built Distribution

cloudsync-0.2.7-py3-none-any.whl (354.4 kB view details)

Uploaded Python 3

File details

Details for the file cloudsync-0.2.7.tar.gz.

File metadata

  • Download URL: cloudsync-0.2.7.tar.gz
  • Upload date:
  • Size: 84.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.22.0

File hashes

Hashes for cloudsync-0.2.7.tar.gz
Algorithm Hash digest
SHA256 bec7ad64d5b9a12c266accf1ca5b0183a40e3272def71df198edc499f95ec7b5
MD5 3b6f22938832aa0075f5d1c6a89d5236
BLAKE2b-256 cf35d58f8bac28994caaeca3a85f6a7cbb5790877681accb3638f4d3c6294b32

See more details on using hashes here.

File details

Details for the file cloudsync-0.2.7-py3-none-any.whl.

File metadata

  • Download URL: cloudsync-0.2.7-py3-none-any.whl
  • Upload date:
  • Size: 354.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.22.0

File hashes

Hashes for cloudsync-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 6d3c90c48eb6ab833b41a992a53eaa5af9cba3233d9f55b8228f3254ef4fc1e4
MD5 fff5e052aad070fb02182210fc06eb01
BLAKE2b-256 0565d3a6827f6707bbf27a2b174dd5f89dbc3e8c1c5c4ddfcfa08a6096065261

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page