views:

97

answers:

3

I'm trying to find a Python coding style enforcer (tool, not person!). Any recommendations?

--Steve

+2  A: 

I only know pylint, but it is not an automatic code formatter, rather a marking tool.

wok
A: 

pyflakes is like pylint but faster.

katrielalex
A: 

Don't forget PEP8, both the PEP8 style guide (http://www.python.org/dev/peps/pep-0008/) and the tool

Not a lint like tool, but keeps your style in line with the main python community.

Mark