Metadata-Version: 1.1
Name: sweeper
Version: 0.9.0
Summary: Find duplicate files and perform action.
Home-page: https://github.com/darko-poljak/sweeper
Author: Darko Poljak
Author-email: darko.poljak@gmail.com
License: GPLv3
Download-URL: https://github.com/darko-poljak/sweeper
Description: sweeper
        =======
        
        Find duplicate files and perform action.
        
        Usage
        =====
        
        Print duplicates
        
        .. code:: python
        
            from sweeper import Sweeper
            swp = Sweeper(['images1', 'images2'])
            dups = swp.file_dups()
            print(dups)
        
        Remove duplicate files
        
        .. code:: python
        
            from sweeper import Sweeper
            swp = Sweeper(['images1', 'images2'])
            swp.rm()
        
        Perform custom action
        
        .. code:: python
        
            from sweeper import Sweeper
            swp = Sweeper(['images'])
            for f, h, dups in swp:
                print('encountered {} which duplicates with already found duplicate files {} with hash {}'.format(f, dups, h))
        
        As script::
        
            python -m sweeper/sweeper --help
        
        As installed console script::
            
            sweeper --help
        
        Installation
        ============
        
        from source::
        
            python setup.py install
        
        or from PyPI::
        
            pip install sweeper
        
        Documentation
        =============
        
        this README.rst, code itself, docstrings
        
        sweeper can be found on github.com at:
        
        https://github.com/darko-poljak/sweeper
        
        Tested With
        ===========
        
        Python2.7, Python3
        
        
Keywords: find duplicate files
Platform: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
