Skip to main content

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

Uploaded Source

Built Distribution

cloudsync-1.3.14-py3-none-any.whl (175.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for cloudsync-1.3.14.tar.gz
Algorithm Hash digest
SHA256 cf67ecbadec3c62fb4166bd34b42e2ad90f7cae667865ddb4cbb69f1716d985a
MD5 bece5b126d9744db295276a0e8c7c933
BLAKE2b-256 46867007bccf7f5f064e02f8c17b68143553f07a199c874fa2400d60e40c2e10

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cloudsync-1.3.14-py3-none-any.whl
Algorithm Hash digest
SHA256 60b6bf8c5759b67e5d132e20ab55b6eb84f9daaa2560b52a271cb8665476aeaf
MD5 8b69159e7b2d9a60eca0ead12edeefaa
BLAKE2b-256 eb25cfbcee78a43a4d2467a29db9f547a75b11567447286fae2963667f880484

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