Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some existing code which isn't formatted consistently -- sometimes two spaces are used for indent, sometimes four, and so on. The code itself is correct and well-tested, but the formatting is awful.

Is there a place online where I can simply paste a snippet of Python code and have it be indented/formatted automatically for me? Alternatively, is there an X such that I can do something like X --input=*.py and have it overwrite each file with a formatted version?

share|improve this question

3 Answers

up vote 14 down vote accepted

Use reindent.py. It should come with the standard distribution of Python, though on Ubuntu you need to install the python2.6-examples package.

You can also find it on the web.

This script attempts to convert any python script to conform with the 4-space standard.

share|improve this answer
Great suggestion! reindent.py is invaluable and has become a standard part of my dev toolkit. – jathanism Apr 12 '10 at 21:07
3  
Perfect. Thanks! I used find . -type f -name "*.py" | xargs python reindent.py --nobackup. – John Feminella Apr 12 '10 at 21:26
1  
Under Fedora you need to install the python-tools package to get reindent.py – JohnTESlade May 12 '12 at 19:52

autopep8 would auto-format your python script. not only the code indentation, but also other coding spacing styles. It makes your python script to conform PEP8 Style Guide.

pip install autopep8
autopep8 your_script.py    # dry-run, only print
autopep8 -i your_script.py # replace content
share|improve this answer

Some editors have an auto-format feature that does this for you. Eclipse is one example (though you would probably have to install a python plug-in).

Have you checked whichever editor you use for such a feature?

share|improve this answer
+1 for eclipse autoformatting. Just open up the file and resave it in eclipse. It will fix the indentation, delete erroneous spaces between parenthesis and args, add spaces after commas in lists and args, add correct spacing around "=" signs, and all the other PEP 8 goodness. – user297250 Apr 13 '10 at 8:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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