Metadata-Version: 1.1
Name: checksumdir
Version: 1.0.5
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 hashdir
        
            directory = '/path/to/directory/'
            md5hash = hashdir(directory, 'md5')
            sha1hash = hashdir(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: Programming Language :: Python
Classifier: Operating System :: OS Independent
