Something similar to Visual Studio's formatting settings that allows spaces in empty method calls, spacing before and after the . member access operator, etc. For instance:

from:

verts()[i].setPosition(x,y,z)

to:

verts ( )[ i ].setPosition ( x, y, z )

I saw a few links online but they seem to be pretty outdated.

Also looking for a tool with a GUI.

link|improve this question

1  
Take a look at this SO question and subsequent responses. – Makoto Jan 1 at 2:36
5  
You should follow PEP-8 – JBernardo Jan 1 at 4:19
feedback

2 Answers

up vote 2 down vote accepted

The PyCharm IDE has a feature to format code, and it's configurable to the coding style of you, or the project.

Keep in mind, PyCharm is NOT free.

link|improve this answer
feedback

I use Komodo myself, but many editors format Python code. You may want to look at this post: What IDE to use for Python?

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.