├── .gitignore ├── LICENSE ├── README.md ├── dupe_eraser ├── __main__.py └── core │ ├── __init__.py │ ├── comparison_method.py │ ├── duplicate_remover.py │ └── hash_performance.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/README.md -------------------------------------------------------------------------------- /dupe_eraser/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/dupe_eraser/__main__.py -------------------------------------------------------------------------------- /dupe_eraser/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dupe_eraser/core/comparison_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/dupe_eraser/core/comparison_method.py -------------------------------------------------------------------------------- /dupe_eraser/core/duplicate_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/dupe_eraser/core/duplicate_remover.py -------------------------------------------------------------------------------- /dupe_eraser/core/hash_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/dupe_eraser/core/hash_performance.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasBizzozzero/dupe_eraser/HEAD/requirements.txt --------------------------------------------------------------------------------