Is there an utility that could be run to reformat and fix simple code convention issues in Python?

Let's say that you end-up with a big project that didn't followed PEP8 quite well and you want to fix it.

I am looking for simple fixes like:

  • a = a + 1 => a += 1
  • if (a): => if a:
  • spacing between parameters
link|improve this question

64% accept rate
Have you tried the pep8 tool? pypi.python.org/pypi/pep8 – Decio Lira Oct 14 '11 at 17:35
The first example you give is not necessarily a simple fix. How can you be certain that a supports augmented arithmetic assignment? – ekhumoro Oct 14 '11 at 18:40
feedback

3 Answers

up vote 2 down vote accepted

autopep8 convert code as per pep8 style guide.

link|improve this answer
Changing my answer to autopep8 as I find pythontidy to be obsolete. – Sorin Sbarnea May 22 at 15:38
feedback

There is a tool called pep8 that someone adapted to auto fix (haven't tried it so ymmv), however auto fixing some of these issues seems to be a little scary to me if you don't have tests: https://github.com/egonSchiele/pep8

link|improve this answer
Nope, it should be enough to compare the binary for most changes :D – Sorin Sbarnea May 22 at 15:39
feedback

PythonTidy seems to be what you're looking for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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