Metadata-Version: 2.1
Name: removedupes
Version: 1.0.2
Summary: Remove all duplicate files from a directory, fast
Home-page: https://github.com/AlexNilsson/python-remove-duplicate-files
Author: Alexander Nilsson
Author-email: contact@alexnilsson.io
License: MIT
Keywords: remove files duplicate duplicates dupes dupe directory
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: setuptools (>=28.8.0)

# removedupes
Remove duplicate files from a directory, fast

Files will be compared by size,
then by first (1024) chunk hash,
then by full hash

## Install
```
pip install removedupes
```

## Format
```python
from removedupes import removeDuplicates

removeDuplicates(directory)
```


