aboutsummaryrefslogtreecommitdiff
blob: 6c58db507f39909c6c950e632a7685a8fa6acff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
API Documentation
=================

Third party usage of pkgcheck's API should always import from the pkgcheck
module. Any module or functionality that can't be accessed directly from the
main module is not considered to be stable and should be avoided.

Proper API usage example:

.. code-block:: python

    from pkgcheck import scan

    for result in scan(['-r', '/path/to/ebuild/repo']):
        print(result)