diff --git a/.gitignore b/.gitignore index 86d8881..e879b85 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,7 @@ /.idea/ /.venv/ +/.mypy_cache/ +/.pytest_cache/ +/.ruff_cache/ __pycache__/ /dist/ diff --git a/README.md b/README.md index 4c4e8ab..725a896 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ [![License](https://img.shields.io/github/license/inverse/cert-host-scraper.svg)](LICENSE) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) -Query the certificate transparency log from [crt.sh](https://crt.sh) by a given a keyword and returns the status code of the matched results. Optionally filtering the results by status code. +Query the certificate transparency log from [crt.sh](https://crt.sh) by a given a keyword and returns the status code of the matched results. Optionally, filtering the results by status code. Demo of cert-host-scraper ## Usage ```bash -cert-host-scraper search your-domain.com [--status-code 200] [--clean/--no-clean] +cert-host-scraper search your-domain.com [--status-code 200] ``` ## Installation @@ -32,7 +32,7 @@ pip install cert-host-scraper ## Development -Requires [poetry][0] and Python 3.10. +Requires [poetry][0] and Python 3.10+. ``` poetry install