pip install structcheck
pip freeze | grep structcheck
python -m structcheck --help
python -m structcheck
A popup windows will ask you for directory and config file
Path to scan:
python -m structcheck -p "/path/to/scan"
A popup windows will ask you for config file
python -m structcheck -p "/path/to/scan" -c "/path/to/config.json"
import structcheck
txt, reports, logs = structcheck.scan() # Same as command 'python -m structcheck'
You can add arguments with:
txt, reports, logs = structcheck.scan([
"-p", "/path/to/scan",
"-c", "/path/to/config.json",
])