A fast and simple command line tool written in rust and python for finding duplicate files.
Probably not, this is still a WIP, it's quite messy, I haven't tested most of it, and was my first time using Rust so I probably did some dodgy stuff.
- Install the
dupesearch
package from pip using your preferred command. - Run
python -m dupesearch -i
and follow the instructions.
To set up locally:
- Clone the repository with
git clone https://github.com/wookie184/dupesearch.git
cd
into the repository withcd dupesearch
- Create and activate a venv, and make sure to point your editor to the executable if necessary.
- Install the dev requirements with
pip install -r requirements-dev.txt
- Install the pre-commit hooks with
pre-commit install
- Install the rust crate as a module with
maturin develop --release
- Finally, run the project with
python -m dupesearch
If you'd like to make a contribution, feel free to and i'll try to merge it in. If it's not a tiny change please create an issue first, at least to ensure that i'm still active and able to review the changes.
Any issues suggesting improvements are also welcome, although this was just done as a practice project to get started with rust and packaging python projects, so I may not implement every suggestion.