blob: 373c498667182bc6a8a87582d3edd35a0d7c35ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
###
API
###
You can call ``Pylint``, ``epylint``, ``symilar`` and ``pyreverse`` from another
Python program thanks to their APIs:
.. sourcecode:: python
from pylint import run_pylint, run_epylint, run_pyreverse, run_symilar
run_pylint("--disable=C", "myfile.py")
run_epylint(...)
run_pyreverse(...)
run_symilar(...)
.. toctree::
:maxdepth: 1
:hidden:
pylint
epylint
|