Take a look at the pylint/epylint.py
file which contains two different ways to start Pylint programmatically.
You can also simply call
from pylint.lint import Run
Run(['--errors-only', 'myfile.py'])
for instance.
Take a look at the pylint/epylint.py
file which contains two different ways to start Pylint programmatically.
You can also simply call
from pylint.lint import Run
Run(['--errors-only', 'myfile.py'])
for instance.