Cython-augmented Python module providing a variable-length, content-based blocking algorithm
Project description
Chop a file into variable-length, content-based chunks.
Example use: .. code-block:: python
>>> import rolling_checksum_mod >>> # If you have both rolling_checksum_pyx_mod and rolling_checksum_py_mod installed, the software will >>> # automatically prefer the pyx version. Both py and pyx versions require rolling_checksum_py_mod, but >>> # only the pyx version requires rolling_checksum_pyx_mod. >>> with open('/tmp/big-file.bin', 'rb') as file_: >>> for chunk in rolling_checksum_mod.min_max_chunker(file_): >>> # chunk is now a piece of the data from file_, and it will not always have the same length. >>> # Instead, it has the property that if you insert a byte at the beginning of /tmp/big-file.bin, >>> # most of the chunks of the file will remain the same. This can be nice for a deduplicating >>> # backup program. >>> print(len(chunk))
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
Close
Hashes for rolling_checksum_pyx_mod-1.1.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b8bb9900521e7ef8fa83bfd327f6f813871fb48a7cf0dfdac0162db7ac0a96c |
|
MD5 | 2b6904e90fcfab5f0d4e6651a9484173 |
|
BLAKE2b-256 | 366369fe060d65570c3b98b0a7f1334043caa070c9b0fc21c3db9b3020ab5ca3 |