diff --git a/docs/code-reviews/recipes/python.md b/docs/code-reviews/recipes/python.md index 9e69fd6e27..f37d2c1d83 100644 --- a/docs/code-reviews/recipes/python.md +++ b/docs/code-reviews/recipes/python.md @@ -100,6 +100,16 @@ Format python code yapf [file/folder] --in-place ``` +### Bandit + +[Bandit](https://github.com/PyCQA/bandit) is a tool designed by the Python Code Quality Authority (PyCQA) to perform static analysis of Python code, specifically targeting security issues. +It scans for common security issues in Python codebase. + +- **Installation**: Add Bandit to your development environment with: + ```bash + pip install bandit + ``` + ## VS Code Extensions ### Python