A Python package to search for and remove duplicated files in messy datasets
Project description
deduplify
A Python tool to search for and remove duplicated files in messy datasets.
Table of Contents:
Overview
deduplify
is a Python command line tool that will search a directory tree for duplicated files and optionally remove them.
It generates an MD5 hash for each file recursively under a target directory, groups together the filepaths that generate unique and duplicated hashes. When deleting duplicated files, it deletes those deepest in the directory tree first leaving the last present.
Installation
deduplify
has a minimum Python requirement of v3.7 but has been developed in v3.8.
From PyPI
First, make sure your pip
version is up-to-date.
python -m pip install --upgrade pip
Then install deduplify
.
pip install deduplify
Manual Installation
Begin by cloning this repository and change into it.
git clone https://github.com/Living-with-machines/deduplify.git
cd deduplify
Now run the setup script.
This will install any requirements and the CLI tool into your Python $PATH
.
python setup.py install
Usage
deduplify
has 3 commands: hash
, compare
and clean
.
Hashing files
The hash
command takes a path to a target directory as an argument.
It walks the structure of this directory tree and generates MD5 hashes for all files and outputs two JSON files, the names of which can be overwritten using the --dupfile [-d]
and --unfile [-u]
flags.
One JSON file contains hashes that are considered "unique" since only one filepath generated this hash. This file is organised such that the keys are the hashes and the values are the filepaths that generated the hashes.
The second JSON file contains hashes that are considered "duplicated" since more than one filepath generated the same hash. This file is organised such that the keys are the hashes and the values are a list of the filepaths that generated the duplicated hashes.
Command line usage:
usage: deduplify hash [-h] [-c COUNT] [-v] [-d DUPFILE] [-u UNFILE] dir
positional arguments:
dir Path to directory to begin search from
optional arguments:
-h, --help show this help message and exit
-c COUNT, --count COUNT
Number of threads to parallelise over. Default: 1
-v, --verbose Print logging messages to the console
-d DUPFILE, --dupfile DUPFILE
Destination file for duplicated hashes. Must be a JSON file. Default: duplicates.json
-u UNFILE, --unfile UNFILE
Destination file for unique hashes. Must be a JSON file. Default: uniques.json
Comparing files
The compare
command reads in the JSON file of duplicates generated by running hash
, the name of which can be overwritten using the --infile [-i]
flag if the data were saved under a different name.
The command runs a check to test if the stem of the filepath are equivalent for all paths that generated a given hash.
This indicates that the file is a true duplication as since both its name and content match.
If they do not match, this implies that the same content is saved under two different filenames.
In this scenario, a ValueError
is raised and the user is asked to manually investigate these files.
If all the filenames for a given hash match, then the shortest filepath is removed from the list and the rest are returned to be deleted.
To delete files, the user needs to run compare
with the --purge
flag set.
A recommended workflow to ensure that all duplicated files have been removed would be as follows:
deduplify hash target_dir # First pass at hashing files
deduplify compare --purge # Delete duplicated files
deduplify hash target_dir # Second pass at hashing files
deduplify compare # Compare the filenames again. The code should return nothing to compare
Command line usage:
usage: deduplify compare [-h] [-c COUNT] [-v] [-i INFILE] [--purge]
optional arguments:
-h, --help show this help message and exit
-c COUNT, --count COUNT
Number of threads to parallelise over. Default: 1
-v, --verbose Print logging messages to the console
-i INFILE, --infile INFILE
Filename to analyse. Must be a JSON file. Default: duplicates.json
--purge Deletes duplicated files. Default: False
Cleaning up
After purging duplicated files, the target directory may be left with empty sub-directories.
Running the clean
command will locate and delete these empty subdirs and remove them.
Command line usage:
usage: deduplify clean [-h] [-c COUNT] [-v] dir
positional arguments:
dir Path to directory to begin search from
optional arguments:
-h, --help show this help message and exit
-c COUNT, --count COUNT
Number of threads to parallelise over. Default: 1
-v, --verbose Print logging messages to the console
Global arguments
The following flags can be passed to any of the commands of deduplify
.
--verbose [-v]
: The flag will print verbose output to the console, as opposed to saving it to thededuplify.log
file.--count [-c]
: Some processes withindeduplify
can be parallelised over multiple threads when working with larger datasets. To do this, include the--count
flag with the (integer) number of threads you'd like to parallelise over. This flag will raise an error if requesting more threads than CPUs available on the host machine.
Contributing
Thank you for wanting to contribute to deduplify
! :tada: :sparkling_heart:
To get you started, please read our Code of Conduct and Contributing Guidelines.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for deduplify-0.1.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d148c431ac23534975531ac51d830dd21c23b641ab49be9e5a1ccd53876aaae |
|
MD5 | 641aaf92205278e1fbaf4527cca520ac |
|
BLAKE2b-256 | 096098aaa4920b841e91f2555744cd0952900902055b4673db7c38494f2ce30d |