summaryrefslogtreecommitdiff
path: root/doc/development_guide/api/index.rst
blob: ac4e9690002b88a1fd42647e0577a48ec03b89ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
###
API
###

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

.. sourcecode:: python

    from pylint import run_pylint, run_pyreverse, run_symilar

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


.. toctree::
  :maxdepth: 1
  :hidden:

  pylint