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

Uploaded Source

Built Distribution

cloudsync-1.3.16-py3-none-any.whl (179.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for cloudsync-1.3.16.tar.gz
Algorithm Hash digest
SHA256 f082542774de9bace9e21685ce464367f2f13bf4eda98725aac6eaa10d87f558
MD5 fbfd16ee321c3f1643b5f5fe4c4b090e
BLAKE2b-256 16f24796e2897dc98128af593f9afcc9604a5f9b02b817a6032e81859da603f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cloudsync-1.3.16-py3-none-any.whl
Algorithm Hash digest
SHA256 ff2a5da3e534df6341a7f76d0974c372960d1702ccf6dc7835314f6eb3562386
MD5 f0a8a80b658cc27ce05e92f7093444d1
BLAKE2b-256 d95b721a66cfdda592df854879d36cf3093b642247c4d70245c7a4e76256ea83

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