Metadata-Version: 1.1
Name: caf
Version: 0.1.1
Summary: Create content addressable files
Home-page: https://github.com/jamesls/caf
Author: James Saryerwinnie
Author-email: js@jamesls.com
License: BSD
Description: ===
        caf
        ===
        
        .. image:: https://badge.fury.io/py/caf.png
            :target: http://badge.fury.io/py/caf
        
        .. image:: https://travis-ci.org/jamesls/caf.png?branch=master
                :target: https://travis-ci.org/jamesls/caf
        
        .. image:: https://pypip.in/d/caf/badge.png
                :target: https://pypi.python.org/pypi/caf
        
        
        Caf (content addressable files) is a CLI utility that allows you to:
        
        * Create random files using ``caf gen``
        * Verify the generated files have not been tampered with ``caf verify``
        
        That's it.  Generate files with random content and verify the files haven't
        changed.  The ``caf gen`` command gives control over both the number of files
        to create as well as the size of the files created.  It even lets you specify
        the distribution of file sizes (more on that in a bit).
        
        Caf is also designed in a way that allows for parallel file generation as well
        as parallel file validation.  It can seamlessly scale up to billions of files.
        
        For example, create a set of random files up to 10MB (the default file size
        is 4k)::
        
            $ caf gen --max-disk-usage 10MB
        
        You can then verify the files are all there::
        
            $ caf verify
        
        The ``--help`` output of the ``caf gen`` command contains many more examples.
        
Keywords: caf
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
