Metadata-Version: 2.0
Name: flake8-bandit
Version: 1.0.2
Summary: Automated security testing with bandit and flake8.
Home-page: https://github.com/tylerwince/flake8-bandit
Author: Tyler Wince
Author-email: tyler@myndshft.com
License: MIT
Platform: UNKNOWN
Classifier: Framework :: Flake8
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: flake8
Requires-Dist: bandit
Requires-Dist: flake8-polyfill


# flake8-bandit

Automated security testing built right into your workflow!

You already use flake8 to lint all your code for errors, ensure docstrings are formatted correctly, sort your imports correctly, and much more... so why not ensure you are writing secure code while you're at it? If you already have flake8 installed all it takes is `pip install flake8-bandit`.

## How's it work?

We use the [bandit](https://github.com/openstack/bandit/blob/master/bandit/cli/main.py) package from [Open Stack](https://www.openstack.org) for all the security testing. This package is simply a flake8 wrapper around their project (similar to [flake8-isort](https://github.com/gforcada/flake8-isort)).


