blob: 5047a0fdba83e79cc3c50b849dda1edb2475aeaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
:mod:`apt` --- Highlevel apt package
=====================================
The highlevel apt package provides a lot of functionality, all
with an easy-to-use interface.
.. warning::
The API of this package is not considered stable. Evenmore, it is considered
to change the naming conventions in future to lowercase_with_underscores.
In case this happens, the API will still be kept compatible, with the old
functions provided as deprecated ones.
.. automodule:: apt
:members:
.. toctree::
:maxdepth: 2
:glob:
*
Classes exported in apt
------------------------
These classes are defined in the submodules, but are also exported directly
in the package.
.. class:: Cache
Please see :class:`apt.cache.Cache` for documentation.
.. class:: Cdrom
Please see :class:`apt.cdrom.Cdrom` for documentation.
.. class:: CdromProgress
Please see :class:`apt.progress.CdromProgress` for documentation.
.. class:: FetchProgress
Please see :class:`apt.progress.FetchProgress` for documentation.
.. class:: InstallProgress
Please see :class:`apt.progress.InstallProgress` for documentation.
.. class:: OpProgress
Please see :class:`apt.progress.OpProgress` for documentation.
.. class:: Package
Please see :class:`apt.package.Package` for documentation.
|