I'm trying out PyCharm for Django development and so far am extremely happy. My team strictly follows PEP8 formatting and we use the pep8 command line program to check to make sure our code conforms.

I've configured an external tool command to run pep8 and it works good. I see the capability to create filters that will cause the output to be parsed into something PyCharm can use. I've read the docs and searched Google but can't find an example to make this work. Docs are http://www.jetbrains.com/pycharm/webhelp/add-filter-dialog.html

I'm using PyCharm 1.2 and the output filter I'm using looks like this:

$FILE_PATH$:$LINE$:$COLUMN:.*

Example output looks like this:

/home/matt/.../settings.py:13:30: E261 at least two spaces before inline comment
/home/matt/.../settings.py:20:80: E501 line too long (126 characters)

What would be even more awesome is if this could be run each time the file is saved.

link|improve this question

Thanks for this question (which served as a guide for me!) Did you ever find a way to make it run automatically when a file is saved? – Gattster Sep 20 '11 at 18:53
No, but haven't really tried either. I have a keyboard shortcut that has just kind of become second nature. – newz2000 Sep 21 '11 at 3:50
feedback

2 Answers

up vote 8 down vote accepted

You're going to kick yourself when you hear this. You've missed a $ off the end of COLUMN. Thank you very much for this by the way, I followed your steps and I have it working perfectly. Your filter should be.

$FILE_PATH$:$LINE$:$COLUMN$:.*

UPD: To have it work for PyCharm 1.5 use

$FILE_PATH$\:$LINE$\:$COLUMN$\:.*
link|improve this answer
Rob, you rock. I am kicking myself but thanks a lot, it works great now! – newz2000 May 11 '11 at 7:21
1  
For parsing doxygen output you have to write $FILE_PATH$:$LINE$:.* – Sorin Sbarnea Oct 11 '11 at 9:19
@Sorin Sbarnea, - same for PyFlakes as well. – Kimvais Apr 20 at 8:27
Couldn't make it work in PyCharm 2.0.2 on Windows ;( – Oscar Mederos May 2 at 6:28
The problem seems to be that the the path contains a ! symbol, and it stops recognizing the $FILE_PATH$ once it finds the first ! :( – Oscar Mederos May 2 at 6:44
feedback

PyCharm expects full file path for the links to work, not just the name.

link|improve this answer
In this case, that path is relative to the project root. Does that make a difference? I changed my config for the external command to use the full path and no change happened. I've updated my example above. – newz2000 Mar 25 '11 at 18:50
It should work, please file a bug at youtrack.jetbrains.net. – CrazyCoder Mar 25 '11 at 20:44
feedback

Your Answer

 
or
required, but never shown

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