Some fixes.

This commit is contained in:
darko-poljak 2014-01-27 08:01:30 +01:00
parent c5fdf029e2
commit a30cd37814
1 changed files with 4 additions and 2 deletions

View File

@ -11,25 +11,27 @@ As module
Print duplicates
^^^^^^^^^^^^^^^^
.. code:: python
from sweeper import file_dups
dups = file_dups(['images1', 'images2'])
print(dups)
Remove duplicate files
^^^^^^^^^^^^^^^^^^^^^^
.. code:: python
from sweeper import file_dups
rm_file_dups(['images'])
Perform custom action
^^^^^^^^^^^^^^^^^^^^^
.. code:: python
from sweeper import file_dups
for files in do_with_file_dups(['images']):
for fname in files:
print('found duplicte file with name: %s' % fname)
As script
---------
---------
python sweeper.py --help
Installation