API#

You can call Pylint, epylint, symilar and pyreverse from another Python program thanks to their APIs:

from pylint import run_pylint, run_epylint, run_pyreverse, run_symilar

run_pylint("--disable=C", "myfile.py")
run_epylint(...)
run_pyreverse(...)
run_symilar(...)