Eric Brown
Eric Brown
More info: http://www.marinamele.com/from-a-python-script-to-a-portable-mac-application-with-py2app http://dafoster.net/articles/2014/06/24/submitting-a-python-app-to-the-mac-app-store/
Are you looking for a CLI command to list all of the test plugins? If you run `bandit -h` it will list the plugin names, but maybe not to the...
Could you please describe the security issue related to this more. Thanks!
Could you please give me some more insight into the problem this PR is fixing? Seems like a good one to open as a feature enhancement first. Thanks!
Looks like a false positive as a result of #766 which now examines function calls with attributes that have the word "token" within them. The hardcoded password/token/etc check tends to...
@lukehinds Yeah, I was thinking Bandit would output a new field of the suggested fix. But it could also have a command line option to actually make the changes in...
I investigated this some. The ast includes a [NodeTransformer](https://docs.python.org/3/library/ast.html#ast.NodeTransformer) that enables rewriting the tree. And in Python 3.9 and later, ast can do an [unparse](https://docs.python.org/3/library/ast.html#ast.unparse) in addition to parse. So...
Here's a short example using libcst to auto-correct a problem in code, all while preserving the comments. ```python import libcst as cst code = ''' from paramiko import client class...
So you will get the same result if you run: `python pocFile.py` However, if a Python file contains UTF-8 characters, then it must be specified in the header: `# -*-...
Pbr is also used in the docs build. So switching to importlib_metadata might not resolve everything.