Skip to main content

Python ctypes wrapper for librsync.

Project description

Travis CI Status Code Coverage Latest PyPI version Number of PyPI downloads

A SmartFile Open Source project. Read more about how SmartFile uses and contributes to Open Source software.

SmartFile

Introduction

A ctypes wrapper for librsync. Provides signature(), delta(), and patch() functions.

There are three steps necessary to synchronize a file. Two steps are performed on the source file and one on the destination.

  1. Generate a signature for the destination file.

  2. Generate a delta for the source file (using the signature).

  3. Patch the destination file using the generated delta.

Usually, these steps involve remote systems. Here is an example of synchronizing two local files.

import librsync

# The destination file.
dst = file('Resume-v1.0.pdf', 'rb')

# The source file.
src = file('Resume-v1.2.pdf', 'rb')

# Where we will write the synchronized copy.
synced = file('Resume-latest.pdf', 'wb')

# Step 1: prepare signature of the destination file
signature = librsync.signature(dst)

# Step 2: prepare a delta of the source file
delta = librsync.delta(src, signature)

# Step 3: synchronize the files.
# In many cases, you would overwrite the destination with the result of
# synchronization. However, by default a new file is created.
librsync.patch(dst, delta, synced)

Extending

This wrapper only exposes the most common operations that librsync provides. It is not meant to be a full wrapper, but should cover most use-cases. You can easily extend this wrapper. Information about librsync is available in it’s manual which is linked below (I wish I had found this BEFORE writing this wrapper!)

http://rproxy.samba.org/doxygen/librsync/refman.pdf

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

python-librsync-0.1-2.tar.gz (4.4 kB view details)

Uploaded Source

File details

Details for the file python-librsync-0.1-2.tar.gz.

File metadata

File hashes

Hashes for python-librsync-0.1-2.tar.gz
Algorithm Hash digest
SHA256 beb8e6fa5d804161c62637ec23b151e30ac0e8271899157cf052bc6dfee96dde
MD5 5ea711fbc211124c44728b38123c72c6
BLAKE2b-256 c9cd8b474fd4118bd314330d41857e21ce989f87c1494426cc447f8d8e3b1308

See more details on using hashes here.

Supported by

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