Python static code analysis stack?
What Python code analysis tools are you using?
Dead code detection tool?
Facebook releases pysa, a python static analysis tool for security issues, with built in Django support
I haven't tried it myself yet, but it looks really interesting and I will try to test it out tomorrow.
More on reddit.comWhat is Sonar’s Python static code analysis and how does it help improve quality code?
What are the benefits of using Sonar for Python static code analysis compared to other tools?
What types of issues does Sonar’s Python static code analysis detect?
Videos
I am researching standard static code analysis tooling in Python.
In the company, we mostly work in the Java ecosystem and we have a stable set of tooling that helps us meet and measure our code quality requirements: jacoco for code coverage (automated tests) measure, PMD/Spotbug/Checkstyle for code analysis, and OWASP dependency-check to check dependencies against known vulnerabilities.
We are going to work on some external code made in Python and we need to recreate a similar tool stack for it.
What would be your suggestions? Thanks in advance.
I am writing a new tool to do code analysis for Python. I know about pylint, bandit and like these tools but I have been frustrated by the fact that it's hard to extend and they do not provide fixes.
I was curious to learn from the community what tool they use: what rules are the most relevant/valuable to you and what feature/rule would are useful to you.
Thanks for any idea!