Metadata-Version: 1.1
Name: cmpa
Version: 0.0.4
Summary: Comparison utility
Home-page: https://github.com/jamesabel/cmpa
Author: James Abel
Author-email: j@abel.co
License: MIT License
Download-URL: https://github.com/jamesabel/cmpa/archive/master.zip
Description: 
        
        cmpa (Comparison utility)
        =========================
        
        Compares the contents of two directories (folders) and reports if they are equal or not.
        
        Usage
        =====
        
        dircmpa can be used either as a command line application or as a Python library package.
        
        Command Line
        ------------
        
        Simple example:
        
            `cmpa <first_directory> <second_directory>`
        
        Use `cmpa -h` for a complete list of options.
        
        Python library package
        ----------------------
        
        Simple example:
        
        .. code:: python
        
            from cmpa import compare, Compare
        
            # Just compare directory with itself.
            compare(['.', '.'])
            print()
        
            # Use the class for finer grain observability
            c = Compare(['.', '.'], silent=True)
            print(c.get_total_files())
            print(c.get_file_counts())
            print(c.compare_ok_count)
        
        
Keywords: directory,file,comparison,utility
Platform: UNKNOWN
