cspresso/src/cspresso/__main__.py
Miguel Jacq 55a815564f
Some checks failed
CI / test (push) Successful in 2m29s
Lint / test (push) Failing after 29s
Trivy / test (push) Successful in 23s
* Add --bypass-csp option to ignore an existing enforcing CSP to avoid it skewing results
* Add `--evaluate` option to test a proposed CSP without needing to install it (best to use in conjunction with --bypass-csp`)
2026-01-02 14:09:56 +11:00

5 lines
84 B
Python

import sys
from .crawl import main
if __name__ == "__main__":
sys.exit(main())