piicatcher
Scan databases and data warehouses for PII data. Tag tables and columns in data catalogs like Amundsen and Datahub
File Explorer
Download Latest Version (.zip)- CHANGELOG.tpl.md
- config.yml
- ci.yml
- docker-build.yml
- publish.yml
- build_image.sh
- Dockerfile
- __init__.py
- api.py
- command_line.py
- dbinfo.py
- detectors.py
- generators.py
- output.py
- scanner.py
- sample-data.csv
- conftest.py
- docker-compose.yml
- test_api.py
- test_cli.py
- test_detectors.py
- test_generators.py
- test_incremental.py
- test_output.py
- test_scanner.py
- .coveragerc
- .gitchangelog.rc
- .gitignore
- .pre-commit-config.yaml
- .pylintrc
- LICENSE
- MANIFEST.in
- Pipfile
- poetry.lock
- pyproject.toml
- README.md
- setup.cfg
# Installation Guide
git clone https://github.com/tokern/piicatcher
Downloads the entire project code from GitHub to your computer.
cd piicatcher
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install piicatcher
Installs the package published on PyPI directly โ no need to clone the source.
pip install piicatcher_spacy
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
alias piicatcher='docker run -v ${HOME}/.config/tokern:/config -u $(id -u ${USER}):$(id -g ${USER}) -it --add-host=host.docker.internal:host-gateway tokern/piicatcher:latest'
Runs the built image as an actual container.
Pulled directly from this repo's README.
4. Python
Easypython3 -m venv .env
Runs the Python script (or module).
pip install piicatcher
Installs the package published on PyPI directly โ no need to clone the source.
pip install piicatcher_spacy
Installs the package published on PyPI directly โ no need to clone the source.
Pulled directly from this repo's README.
