A Python module that provides multiple anonymization techniques for text.
You can install all requirements using:
pip install -r requirements.txt
Compared to installation with setup.py
, requirements.txt additionally installs developer dependencies.
To install the package using setup.py
run:
pip install .
pre-commit install
git config --bool flake8.strict true # Makes the commit fail if flake8 reports an error
To run the hooks:
pre-commit run --all-files
The tests can be executed with:
pytest --doctest-modules --cov-report term --cov=anonymizer
MIT