Regex to parse pylint's parseable output

Just in case someone (including myself) is looking for that: Here's the regex I'm using to parse the output from Pylint to extract error messages. Pylint needs to be called with the -f parseable flag.

Try to match each line of Pylint's output with this regex. If it matches call groupdict() to access to information bits easily.

Comments