summaryrefslogtreecommitdiff
path: root/doc/development_guide/api/index.rst
blob: 00e6e1a9f2fdc38553120f030694ea29bebe2528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
###
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_pyreverse, run_symilar

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


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

  pylint
  epylint