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

Uploaded Source

Built Distribution

cloudsync-0.1.23-py3-none-any.whl (316.2 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for cloudsync-0.1.23.tar.gz
Algorithm Hash digest
SHA256 bc262a5df9d2954dae223659aa02d53f6dd7e11c8b5736e0389346ba5f96bbf7
MD5 356c308aa92b765c9ffa10445f9b54df
BLAKE2b-256 1fe815d33b0c03cd49bab5a39e699d873f5e143acd1a171c3c542f4befc081d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cloudsync-0.1.23-py3-none-any.whl
Algorithm Hash digest
SHA256 8a448ad19b75f6520e2d3f23f6ed9d349dd10c3444917b074e4ca6e032915724
MD5 61c51c9dffd938969e811581c73c63ba
BLAKE2b-256 20dfaf33660166843ccd2780fdab1ea4bfb98d14f02a34d6d6a0d86f72f8ea5f

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