Hi, I'm trying to find a tool to check for coding style in python.
For php I've seen there is the Code Sniffer, and a small perl script used by Drupal. Is there such a tool for python code?
Thanks
|
2
|
Hi, I'm trying to find a tool to check for coding style in python. For php I've seen there is the Code Sniffer, and a small perl script used by Drupal. Is there such a tool for python code? Thanks |
||
|
|
|
In the past I've mainly use PyLint - it can highlight when you used an undefined variable, when you import things without using them and so on. It can be a bit verbose, complaining about things like lines being over 80 character long, variable not matching to specific regex's, classes having too few public methods, methods missing docs-trings. For example, for script..
PyLint generates the following messages:
They are all valid complaints, but I tend to disable a lot of the convention and refactoring messages. You can disable specific messages, either as comments in your code:
..or as command line arguments to the PyLint command:
With the above messages disabled, it generates the following messages for the above code:
PyLint also generates a "code report", including how many lines of code/comments/docstring/whitespace the file has, number of messages per-category, and gives your code a "score" - 10 being no messages, 0 generally being a syntax error Another option is PyFlakes, which I find a little less excessively-verbose (I've recently started using it in place of PyLint). Again using the above script, PyFlakes gives the following messages:
The final option I use is Running on the code above, it produces the following:
It is mostly enforces stylistic things like correct whitespace, it does not do much static-analysis of the code like PyLint or PyFlakes, so I use pep8.py in conjunction with either PyLint or PyFlakes.
PyChecker is another option, although I haven't use it |
|||
|
|
|
pylint and pyflakes would be a good start. pylint in particular is very configurable, and you can enforce quite a few things with it. |
||
|
|
|
Theres a script called Heres a copy of it in case you can't find it in your distribution: http://www.koders.com/python/fid24D30FCD2CE388C67CB980EF55630D25970CFB96.aspx?s=cdef%3Aparser |
||
|