vote up 16 vote down star
3

What tools are good to use for code analysis in python?

I have a large source repository split across multiple projects, and I would like to be able to run tools across the directories to see details like Cyclomatic Complexity, and perhaps be able to spot errors using static analysis.

Ideally, I would like to be able to produce a report about the health of the source code, so we can spot problem areas that need to be addressed.

flag

80% accept rate

6 Answers

vote up 6 vote down check

For measuring cyclomatic complexity, there's a nice tool available at traceback.org. The page also gives a good overview of how to interpret the results.

+1 for pylint. It is great at verifying adherence to coding standards (be it PEP8 or your own organization's variant), which can in the end help to reduce cyclomatic complexity.

link|flag
vote up 0 vote down

There is a tool called CloneDigger that helps you find similar code snippets.

link|flag
vote up 1 vote down

Check out pyflakes from divmod.

link|flag
vote up 2 vote down

Thanks to Pydev, you can integrate pylint in the Eclipse IDE really easily and get a code report each time you save a modified file.

link|flag
vote up 0 vote down

I have used pylint which does some higher analysis, but mostly its things like empty except blocks and the kind.

A quick googeling also found this, a perl program that analysis cyclomatic complexity of python programs. I'm sceptic...

link|flag
vote up 7 vote down

For static analysis there is pylint and pychecker. Personally I use pylint as it seems to be more comprehensive than pychecker.

For cyclomatic complexity you can try this perl program, or this article which introduces a python program to do the same

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.