Metadata-Version: 1.1
Name: checksumdir
Version: 1.1.0
Summary: Simple package to compute a single deterministic hash of the file contents of a directory.
Home-page: http://github.com/cakepietoast/checksumdir
Author: Tom McCarthy
Author-email: tmac.se@gmail.com
License: MIT
Description: ***********
        Checksumdir
        ***********
        
        This is a simple module to create a single hash for a directory of files,
        taking into account only file contents, ignoring any metadata such as file name.
        
        =====
        Usage
        =====
        
        .. code-block:: python
        
            from checksumdir import dirhash
        
            directory = '/path/to/directory/'
            md5hash = dirhash(directory, 'md5')
            sha1hash = dirhash(directory, 'sha1')
        
        
        Or to use the CLI:
        
        .. code-block:: bash
        
            # Defaults to md5
            $ checksumdir /path/to/directory
        
            # Create sha1 hash
            $ checksumdir -a sha1 /path/to/directory
        
Keywords: hash checksum md5 directory
Platform: UNKNOWN
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
