summaryrefslogtreecommitdiff
path: root/doc/source/library
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/library')
-rw-r--r--doc/source/library/apt.cache.rst83
-rw-r--r--doc/source/library/apt.cdrom.rst7
-rw-r--r--doc/source/library/apt.debfile.rst39
-rw-r--r--doc/source/library/apt.package.rst111
-rw-r--r--doc/source/library/apt.progress.base.rst335
-rw-r--r--doc/source/library/apt.progress.gtk2.rst131
-rw-r--r--doc/source/library/apt.progress.qt4.rst3
-rw-r--r--doc/source/library/apt.progress.text.rst21
-rw-r--r--doc/source/library/apt_inst.rst354
-rw-r--r--doc/source/library/apt_pkg.rst2023
-rw-r--r--doc/source/library/aptsources.distinfo.rst11
-rw-r--r--doc/source/library/aptsources.distro.rst11
-rw-r--r--doc/source/library/aptsources.sourceslist.rst11
-rw-r--r--doc/source/library/index.rst37
14 files changed, 3177 insertions, 0 deletions
diff --git a/doc/source/library/apt.cache.rst b/doc/source/library/apt.cache.rst
new file mode 100644
index 00000000..d0e44598
--- /dev/null
+++ b/doc/source/library/apt.cache.rst
@@ -0,0 +1,83 @@
+:mod:`apt.cache` --- The Cache class
+=====================================
+.. automodule:: apt.cache
+
+The Cache class
+---------------
+
+.. autoclass:: Cache
+ :members:
+ :undoc-members:
+
+ .. describe:: cache[pkgname]
+
+ Return a :class:`Package()` for the package with the name *pkgname*.
+
+Example
+^^^^^^^
+
+The following example shows how to load the cache, update it, and upgrade
+all the packages on the system::
+
+ import apt
+ import apt.progress
+
+ # First of all, open the cache
+ cache = apt.Cache()
+ # Now, lets update the package list
+ cache.update()
+ # We need to re-open the cache because it needs to read the package list
+ cache.open(None)
+ # Now we can do the same as 'apt-get upgrade' does
+ cache.upgrade()
+ # or we can play 'apt-get dist-upgrade'
+ cache.upgrade(True)
+ # Q: Why does nothing happen?
+ # A: You forgot to call commit()!
+ cache.commit(apt.progress.TextFetchProgress(),
+ apt.progress.InstallProgress())
+
+
+
+Working with Filters
+--------------------
+.. autoclass:: Filter
+ :members:
+ :inherited-members:
+ :undoc-members:
+
+.. autoclass:: MarkedChangesFilter
+ :members:
+ :inherited-members:
+ :undoc-members:
+
+.. autoclass:: FilteredCache
+ :members:
+ :inherited-members:
+ :undoc-members:
+
+
+Example
+^^^^^^^
+
+This is an example for a filtered cache, which only allows access to the
+packages whose state has been changed, eg. packages marked for installation::
+
+ >>> from apt.cache import FilteredCache, Cache, MarkedChangesFilter
+ >>> cache = apt.Cache()
+ >>> changed = apt.FilteredCache(cache)
+ >>> changed.set_filter(MarkedChangesFilter())
+ >>> print len(changed) == len(cache.get_changes()) # Both need to have same length
+ True
+
+The ProblemResolver class
+--------------------------
+
+.. autoclass:: ProblemResolver
+ :members:
+
+Exceptions
+----------
+.. autoexception:: FetchCancelledException
+.. autoexception:: FetchFailedException
+.. autoexception:: LockFailedException
diff --git a/doc/source/library/apt.cdrom.rst b/doc/source/library/apt.cdrom.rst
new file mode 100644
index 00000000..56381f14
--- /dev/null
+++ b/doc/source/library/apt.cdrom.rst
@@ -0,0 +1,7 @@
+:mod:`apt.cdrom` - Functionality like in apt-cdrom
+====================================================
+.. automodule:: apt.cdrom
+ :members:
+
+
+
diff --git a/doc/source/library/apt.debfile.rst b/doc/source/library/apt.debfile.rst
new file mode 100644
index 00000000..7133b5a8
--- /dev/null
+++ b/doc/source/library/apt.debfile.rst
@@ -0,0 +1,39 @@
+:mod:`apt.debfile` --- Classes related to debian package files
+==============================================================
+The :mod:`apt.debfile` provides classes to work with locally available
+debian packages, or source packages.
+
+.. module:: apt.debfile
+
+Binary packages
+----------------
+.. autoclass:: DebPackage
+ :members:
+ :inherited-members:
+ :undoc-members:
+
+ The :class:`DebPackage` class is a class for working with '.deb' files,
+ also known as Debian packages.
+
+ It provides methods and attributes to get a list of the files in the
+ package, to install the package and much more.
+
+ If you specify *cache* it has to point to an :class:`apt.cache.Cache()`
+ object.
+
+ .. versionchanged:: 0.7.9
+ Introduce all new methods (everything except for :meth:`open()` and
+ :attr:`filelist`)
+
+
+Source packages
+----------------
+.. autoclass:: DscSrcPackage
+ :members:
+ :inherited-members:
+ :undoc-members:
+
+ Provide functionality to work with locally available source packages,
+ especially with their '.dsc' file.
+
+ .. versionadded:: 0.7.9
diff --git a/doc/source/library/apt.package.rst b/doc/source/library/apt.package.rst
new file mode 100644
index 00000000..4b143b8a
--- /dev/null
+++ b/doc/source/library/apt.package.rst
@@ -0,0 +1,111 @@
+:mod:`apt.package` --- Classes for package handling
+====================================================
+
+
+.. automodule:: apt.package
+
+
+The Package class
+-----------------
+.. autoclass:: Package
+ :members:
+
+ .. note::
+
+ Several methods have been deprecated in version 0.7.9 of python-apt,
+ please see the :class:`Version` class for the new alternatives.
+
+The Version class
+-----------------
+.. autoclass:: Version
+ :members:
+
+
+Dependency Information
+----------------------
+.. class:: BaseDependency
+
+ The :class:`BaseDependency` class defines various attributes for accessing
+ the parts of a dependency. The attributes are as follows:
+
+ .. attribute:: name
+
+ The name of the dependency
+
+ .. attribute:: relation
+
+ The relation (>>,>=,==,<<,<=,)
+
+ .. attribute:: version
+
+ The version or None.
+
+ .. attribute:: pre_depend
+
+ Boolean value whether this is a pre-dependency.
+
+.. class:: Dependency
+
+ The dependency class represents a Or-Group of dependencies. It provides
+ an attribute to access the :class:`BaseDependency` object for the available
+ choices.
+
+ .. attribute:: or_dependencies
+
+ A list of :class:`BaseDependency` objects which could satisfy the
+ requirement of the Or-Group.
+
+
+Origin Information
+-------------------
+.. class:: Origin
+
+ The :class:`Origin` class provides access to the origin of the package.
+ It allows you to check the component, archive, the hostname, and even if
+ this package can be trusted.
+
+ .. attribute:: archive
+
+ The archive (eg. unstable)
+
+ .. attribute:: component
+
+ The component (eg. main)
+
+ .. attribute:: label
+
+ The Label, as set in the Release file
+
+ .. attribute:: origin
+
+ The Origin, as set in the Release file
+
+ .. attribute:: site
+
+ The hostname of the site.
+
+ .. attribute:: trusted
+
+ Boolean value whether this is trustworthy. An origin can be trusted, if
+ it provides a GPG-signed Release file and the GPG-key used is in the
+ keyring used by apt (see apt-key).
+
+Examples
+---------
+.. code-block:: python
+
+ import apt
+
+ cache = apt.Cache()
+ pkg = cache['python-apt'] # Access the Package object for python-apt
+ print 'python-apt is trusted:', pkg.candidate.origins[0].trusted
+
+ # Mark python-apt for install
+ pkg.mark_install()
+
+ print 'python-apt is marked for install:', pkg.marked_install
+
+ print 'python-apt is (summary):', pkg.candidate.summary
+
+ # Now, really install it
+ cache.commit()
diff --git a/doc/source/library/apt.progress.base.rst b/doc/source/library/apt.progress.base.rst
new file mode 100644
index 00000000..3fd2a7a0
--- /dev/null
+++ b/doc/source/library/apt.progress.base.rst
@@ -0,0 +1,335 @@
+:mod:`apt.progress.base` --- Abstract classes for progress reporting
+====================================================================
+.. module:: apt.progress.base
+
+This module provides base classes for progress handlers from which all
+progress classes should inherit from. Progress reporting classes not
+inheriting from those classes may not work and are not supported.
+
+When creating a subclass of one of those classes, all overridden methods should
+call the parent's method first before doing anything else, because the parent
+method may have to set some attributes. Subclasses not doing so may not work
+correctly or may not work at all and are completely unsupported.
+
+AcquireProgress
+---------------
+.. class:: AcquireProgress
+
+ A monitor object for downloads controlled by the Acquire class. This base
+ class does nothing and should only be used as a base class to inherit
+ from. Instances of this class can be passed to the constructor of
+ :class:`apt_pkg.Acquire` and the Acquire object then uses it to report
+ its progress.
+
+ This class provides several methods which may be overridden by subclasses
+ to implement progress reporting:
+
+ .. method:: done(item: apt_pkg.AcquireItemDesc)
+
+ Invoked when an item is successfully and completely fetched.
+
+ .. method:: fail(item: apt_pkg.AcquireItemDesc)
+
+ Invoked when the process of fetching an item encounters a fatal error
+ like a non existing file or no connection to the server.
+
+ .. method:: fetch(item: apt_pkg.AcquireItemDesc)
+
+ Invoked when some of the item's data is fetched. This normally means
+ that the file is being fetched now and e.g. the headers have been
+ retrieved already.
+
+ .. method:: ims_hit(item: apt_pkg.AcquireItemDesc)
+
+ Invoked when an item is confirmed to be up-to-date. For instance,
+ when an HTTP download is informed that the file on the server was
+ not modified.
+
+ .. method:: media_change(media: str, drive: str) -> bool
+
+ Prompt the user to change the inserted removable media. This function
+ is called whenever a media change is needed to ask the user to insert
+ the needed media.
+
+ The parameter *media* decribes the name of the the media type that
+ should be changed, whereas the parameter *drive* should be the
+ identifying name of the drive whose media should be changed.
+
+ This method should not return until the user has confirmed to the user
+ interface that the media change is complete. It must return True if
+ the user confirms the media change, or False to cancel it.
+
+ .. method:: pulse(owner: apt_pkg.Acquire) -> bool
+
+ This method gets invoked while the Acquire progress given by the
+ parameter *owner* is underway. It should display information about
+ the current state. It must return ``True`` to continue the acquistion
+ or ``False`` to cancel it. This base implementation always returns
+ ``True``.
+
+ .. method:: start()
+
+ Invoked when the Acquire process starts running.
+
+ .. method:: stop()
+
+ Invoked when the Acquire process stops running.
+
+ In addition to those methods, this class provides several attributes which
+ are set automatically and represent the fetch progress:
+
+ .. attribute:: current_bytes
+
+ The number of bytes fetched.
+
+ .. attribute:: current_cps
+
+ The current rate of download, in bytes per second.
+
+ .. attribute:: current_items
+
+ The number of items that have been successfully downloaded.
+
+ .. attribute:: elapsed_time
+
+ The amount of time that has elapsed since the download started.
+
+ .. attribute:: fetched_bytes
+
+ The total number of bytes accounted for by items that were
+ successfully fetched.
+
+ .. attribute:: last_bytes
+
+ The number of bytes fetched as of the previous call to pulse(),
+ including local items.
+
+ .. attribute:: total_bytes
+
+ The total number of bytes that need to be fetched. This member is
+ inaccurate, as new items might be enqueued while the download is
+ in progress!
+
+ .. attribute:: total_items
+
+ The total number of items that need to be fetched. This member is
+ inaccurate, as new items might be enqueued while the download is
+ in progress!
+
+
+CdromProgress
+-------------
+.. class:: CdromProgress
+
+ Base class for reporting the progress of adding a cdrom which could be
+ used with apt_pkg.Cdrom to produce an utility like apt-cdrom.
+
+ Methods defined here:
+
+ .. method:: ask_cdrom_name() -> str
+
+ Ask for the name of the cdrom. This method is called when a CD-ROM
+ is added (e.g. via :meth:`apt_pkg.Cdrom.add`) and no label for the
+ CD-ROM can be found.
+
+ Implementations should request a label from the user (e.g. via
+ :func:`raw_input`) and return this label from the function. The
+ operation can be cancelled if the function returns ``None`` instead
+ of a string.
+
+ .. method:: change_cdrom() -> bool
+
+ Ask for the CD-ROM to be changed. This method should return ``True``
+ if the CD-ROM has been changed or ``False`` if the CD-ROM has not been
+ changed and the operation should be cancelled. This base implementation
+ returns ``False`` and thus cancels the operation.
+
+ .. method:: update(text: str, current: int)
+
+ Periodically invoked in order to update the interface and give
+ information about the progress of the operation.
+
+ This method has two parameters. The first parameter *text* defines
+ the text which should be displayed to the user as the progress
+ message. The second parameter *current* is an integer describing how
+ many steps have been completed already.
+
+ .. attribute:: total_steps
+
+ The number of total steps, set automatically by python-apt. It may be
+ used in conjunction with the parameter *current* of the :meth:`update`
+ method to show how far the operation progressed.
+
+
+OpProgress
+----------
+.. class:: OpProgress
+
+ OpProgress classes are used for reporting the progress of operations
+ such as opening the cache. It is based on the concept of one operation
+ consisting of a series of sub operations.
+
+ Methods defined here:
+
+ .. method:: done()
+
+ Called once an operation has been completed.
+
+ .. method:: update([percent=None])
+
+ Called periodically to update the user interface. This function should
+ use the attributes defined below to display the progress information.
+
+ The optional parameter *percent* is included for compatibility
+ reasons and may be removed at a later time.
+
+ The following attributes are available and are changed by the classes
+ wanting to emit progress:
+
+ .. attribute:: major_change
+
+ An automatically set boolean value describing whether the current call
+ to update is caused by a major change. In this case, the last operation
+ has finished.
+
+ .. attribute:: op
+
+ An automatically set string which describes the current operation in
+ an human-readable way.
+
+ .. attribute:: percent
+
+ An automatically set float value describing how much of the operation
+ has been completed, in percent.
+
+ .. attribute:: subop
+
+ An automatically set string which describes the current sub-operation
+ in an human-readable way.
+
+
+InstallProgress
+---------------
+.. class:: InstallProgress
+
+ InstallProgress classes make it possible to monitor the progress of dpkg
+ and APT and emit information at certain stages. It uses file descriptors
+ to read the status lines from APT/dpkg and parses them and afterwards calls
+ the callback methods.
+
+ Subclasses should override the following methods in order to implement
+ progress reporting:
+
+ .. method:: conffile(current, new)
+
+ Called when a conffile question from dpkg is detected.
+
+ .. note::
+
+ This part of the API is semi-stable and may be extended with 2 more
+ parameters before the release of 0.7.100.
+
+ .. method:: error(pkg, errormsg)
+
+ (Abstract) Called when a error is detected during the install.
+
+ The following method should be overriden to implement progress reporting
+ for dpkg-based runs i.e. calls to :meth:`run` with a filename:
+
+ .. method:: processing(pkg, stage)
+
+ This method is called just before a processing stage starts. The
+ parameter *pkg* is the name of the package and the parameter *stage*
+ is one of the stages listed in the dpkg manual under the status-fd
+ option, i.e. "upgrade", "install" (both sent before unpacking),
+ "configure", "trigproc", "remove", "purge".
+
+ .. method:: dpkg_status_change(pkg: str, status: str)
+
+ This method is called whenever the dpkg status of the package
+ changes. The parameter *pkg* is the name of the package and the
+ parameter *status* is one of the status strings used in the status
+ file (:file:`/var/lib/dpkg/status`) and documented
+ in :manpage:`dpkg(1)`.
+
+ The following methods should be overriden to implement progress reporting
+ for :meth:`run` calls with an :class:`apt_pkg.PackageManager` object as
+ their parameter:
+
+ .. method:: status_change(pkg, percent, status)
+
+ This method implements progress reporting for package installation by
+ APT and may be extended to dpkg at a later time.
+
+ This method takes two parameters: The parameter *percent* is a float
+ value describing the overall progress and the parameter *status* is a
+ string describing the current status in an human-readable manner.
+
+ .. method:: start_update()
+
+ This method is called before the installation of any package starts.
+
+ .. method:: finish_update()
+
+ This method is called when all changes have been applied.
+
+ There are also several methods which are fully implemented and should not
+ be overriden by subclasses unless the subclass has very special needs:
+
+ .. method:: fork() -> int
+
+ Fork a child process and return 0 to the child process and the PID of
+ the child to the parent process. This implementation just calls
+ :func:`os.fork` and returns its value.
+
+ .. method:: run(obj)
+
+ This method runs install actions. The parameter *obj* may either
+ be a PackageManager object in which case its **do_install()** method is
+ called or the path to a deb file.
+
+ If the object is a :class:`apt_pkg.PackageManager`, the functions
+ returns the result of calling its ``do_install()`` method. Otherwise,
+ the function returns the exit status of dpkg. In both cases, ``0``
+ means that there were no problems and ``!= 0`` means that there were
+ issues.
+
+ .. method:: update_interface()
+
+ This method is responsible for reading the status from dpkg/APT and
+ calling the correct callback methods. Subclasses should not override
+ this method.
+
+ .. method:: wait_child()
+
+ This method is responsible for calling :meth:`update_interface` from
+ time to time. It exits once the child has exited. The return value
+ is the full status returned by :func:`os.waitpid` (not only the
+ return code). Subclasses should not override this method.
+
+ The class also provides several attributes which may be useful:
+
+ .. attribute:: percent
+
+ The percentage of completion as it was in the last call to
+ :meth:`status_change`.
+
+ .. attribute:: status
+
+ The status string passed in the last call to :meth:`status_change`.
+
+ .. attribute:: select_timeout
+
+ Used in :meth:`wait_child` to when calling :func:`select.select`
+ on dpkg's/APT's status descriptor. Subclasses may set their own value
+ if needed.
+
+ .. attribute:: statusfd
+
+ A readable :class:`file` object from which the status information from
+ APT or dpkg is read.
+
+ .. attribute:: writefd
+
+ A writable :class:`file` object to which dpkg or APT write their status
+ information.
diff --git a/doc/source/library/apt.progress.gtk2.rst b/doc/source/library/apt.progress.gtk2.rst
new file mode 100644
index 00000000..0d53ad41
--- /dev/null
+++ b/doc/source/library/apt.progress.gtk2.rst
@@ -0,0 +1,131 @@
+:mod:`apt.progress.gtk2` --- Progress reporting for GTK+ interfaces
+===================================================================
+.. module:: apt.progress.gtk2
+
+The :mod:`apt.progress.gtk2` module provides classes with GObject signals and
+a class with a GTK+ widget for progress handling.
+
+
+GObject progress classes
+-------------------------
+.. class:: GInstallProgress
+
+ An implementation of :class:`apt.progress.base.InstallProgress` supporting
+ GObject signals. The class emits the following signals:
+
+ .. describe:: status-changed(status: str, percent: int)
+
+ Emitted when the status of an operation changed.
+
+ .. describe:: status-started()
+
+ Emitted when the installation started.
+
+ .. describe:: status-finished()
+
+ Emitted when the installation finished.
+
+ .. describe:: status-timeout()
+
+ Emitted when a timeout happens
+
+ .. describe:: status-error()
+
+ Emitted in case of an error.
+
+ .. describe:: status-conffile()
+
+ Emitted when a conffile update is happening.
+
+
+.. class:: GAcquireProgress
+
+ An implementation of :class:`apt.progress.base.AcquireProgress` supporting
+ GObject signals. The class emits the following signals:
+
+ .. describe:: status-changed(description: str, percent: int)
+
+ Emitted when the status of the fetcher changed, e.g. when the
+ percentage increased.
+
+ .. describe:: status-started()
+
+ Emitted when the fetcher starts to fetch.
+
+ .. describe:: status-finished()
+
+ Emitted when the fetcher finished.
+
+
+.. class:: GDpkgInstallProgress
+
+ An implementation of :class:`apt.progress.base.InstallProgress` supporting
+ GObject signals. This is the same as :class:`GInstallProgress` and is thus
+ completely deprecated.
+
+.. class:: GOpProgress
+
+ An implementation of :class:`apt.progress.old.FetchProgress` supporting
+ GObject signals. The class emits the following signals:
+
+ .. describe:: status-changed(operation: str, percent: int)
+
+ Emitted when the status of an operation changed.
+
+ .. describe:: status-started()
+
+ Emitted when it starts - Not implemented yet.
+
+ .. describe:: status-finished()
+
+ Emitted when all operations have finished.
+
+GTK+ Widget
+-----------
+.. class:: GtkAptProgress
+
+ Graphical progress for installation/fetch/operations, providing
+ a progress bar, a terminal and a status bar for showing the progress
+ of package manipulation tasks.
+
+ .. method:: cancel_download()
+
+ Cancel a currently running download.
+
+ .. method:: clear()
+
+ Reset all status information.
+
+ .. attribute:: dpkg_install
+
+ Return the install progress handler for dpkg.
+
+ .. attribute:: fetch
+
+ Return the fetch progress handler.
+
+ .. method:: hide_terminal()
+
+ Hide the expander with the terminal widget.
+
+ .. attribute:: install
+
+ Return the install progress handler.
+
+ .. attribute:: open
+
+ Return the cache opening progress handler.
+
+ .. method:: show()
+
+ Show the Box
+
+ .. method:: show_terminal(expanded=False)
+
+ Show an expander with a terminal widget which provides a way to
+ interact with dpkg.
+
+
+Example
+-------
+.. literalinclude:: ../examples/apt-gtk.py
diff --git a/doc/source/library/apt.progress.qt4.rst b/doc/source/library/apt.progress.qt4.rst
new file mode 100644
index 00000000..cd06a4e6
--- /dev/null
+++ b/doc/source/library/apt.progress.qt4.rst
@@ -0,0 +1,3 @@
+:mod:`apt.progress.qt4` --- Progress reporting for Qt4 interfaces
+=================================================================
+Not written yet.
diff --git a/doc/source/library/apt.progress.text.rst b/doc/source/library/apt.progress.text.rst
new file mode 100644
index 00000000..4e051e31
--- /dev/null
+++ b/doc/source/library/apt.progress.text.rst
@@ -0,0 +1,21 @@
+:mod:`apt.progress.text` --- Progress reporting for text interfaces
+===================================================================
+.. automodule:: apt.progress.text
+
+
+Acquire Progress Reporting
+--------------------------
+.. autoclass:: AcquireProgress
+ :members:
+
+
+CD-ROM Progress Reporting
+--------------------------
+.. autoclass:: CdromProgress
+ :members:
+
+Operation Progress Reporting
+-----------------------------
+.. autoclass:: OpProgress
+ :members:
+
diff --git a/doc/source/library/apt_inst.rst b/doc/source/library/apt_inst.rst
new file mode 100644
index 00000000..d9403a9e
--- /dev/null
+++ b/doc/source/library/apt_inst.rst
@@ -0,0 +1,354 @@
+:mod:`apt_inst` - Working with local Debian packages
+====================================================
+.. module:: apt_inst
+
+This module provides useful classes and functions to work with archives,
+modelled after the :class:`tarfile.TarFile` class. For working with Debian
+packages, the :class:`DebFile` class should be used as it provides easy access
+to the control.tar.* and data.tar.* members.
+
+The classes are mostly modeled after the :class:`tarfile.TarFile` class and
+enhanced with APT-specific methods. Because APT only provides a stream based
+view on a tar archive, this module's :class:`TarFile` class only provides a
+very small subset of those functions.
+
+AR Archives
+-----------
+.. class:: ArArchive(file)
+
+ An ArArchive object represents an archive in the 4.4 BSD AR format,
+ which is used for e.g. deb packages.
+
+ The parameter *file* may be a string specifying the path of a file, or
+ a :class:`file`-like object providing the :meth:`fileno` method. It may
+ also be an int specifying a file descriptor (returned by e.g.
+ :func:`os.open`). The recommended way is to pass in the path to the file.
+
+ ArArchive (and its subclasses) support the iterator protocol, meaning that
+ an :class:`ArArchive` object can be iterated over yielding the members in
+ the archive (same as :meth:`getmembers`).
+
+ .. describe:: archive[key]
+
+ Return a ArMember object for the member given by *key*. Raise
+ LookupError if there is no ArMember with the given name.
+
+ .. describe:: key in archive
+
+ Return True if a member with the name *key* is found in the archive, it
+ is the same function as :meth:`getmember`.
+
+ .. method:: extract(name[, target: str]) -> bool
+
+ Extract the member given by *name* into the directory given by
+ *target*. If the extraction failed, an error is raised. Otherwise,
+ the method returns True if the owner could be set or False if the
+ owner could not be changed. It may also raise LookupError if there
+ is no member with the given name.
+
+ The parameter *target* is completely optional. If it is not given, the
+ function extracts into the current directory.
+
+ .. method:: extractall([target: str]) -> bool
+
+ Extract all into the directory given by target or the current
+ directory if target is not given. If the extraction failed, an error
+ is raised. Otherwise, the method returns True if the owner could be
+ set or False if the owner could not be changed.
+
+ .. method:: extractdata(name: str) -> bytes
+
+ Return the contents of the member given by *name*, as a bytes object.
+ Raise LookupError if there is no ArMember with the given name.
+
+ .. method:: getmember(name: str) -> ArMember
+
+ Return a ArMember object for the member given by *name*. Raise
+ LookupError if there is no ArMember with the given name.
+
+ .. method:: getmembers() -> list
+
+ Return a list of all members in the AR archive.
+
+ .. method:: getnames() -> list
+
+ Return a list of the names of all members in the AR archive.
+
+ .. method:: gettar(name: str, comp: str) -> TarFile
+
+ Return a TarFile object for the member given by *name* which will be
+ decompressed using the compression algorithm given by *comp*.
+ This is almost equal to::
+
+ member = arfile.getmember(name)
+ tarfile = TarFile(file, member.start, member.size, 'gzip')'
+
+ It just opens a new TarFile on the given position in the stream.
+
+.. class:: ArMember
+
+ An ArMember object represents a single file within an AR archive. For
+ Debian packages this can be e.g. control.tar.gz. This class provides
+ information about this file, such as the mode and size. It has no
+ constructor.
+
+ .. attribute:: gid
+
+ The group id of the owner.
+
+ .. attribute:: mode
+
+ The mode of the file.
+
+ .. attribute:: mtime
+
+ Last time of modification.
+
+ .. attribute:: name
+
+ The name of the file.
+
+ .. attribute:: size
+
+ The size of the files.
+
+ .. attribute:: start
+
+ The offset in the archive where the file starts.
+
+ .. attribute:: uid
+
+ The user id of the owner.
+
+Debian Packages
+---------------
+.. class:: DebFile(file)
+
+ A DebFile object represents a file in the .deb package format. It inherits
+ :class:`ArArchive`. In addition to the attributes and methods from
+ :class:`ArArchive`, DebFile provides the following methods:
+
+ .. attribute:: control
+
+ The :class:`TarFile` object associated with the control.tar.gz member.
+
+ .. attribute:: data
+
+ The :class:`TarFile` object associated with the data.tar.{gz,bz2,lzma}
+ member.
+
+ .. attribute:: debian_binary
+
+ The package version, as contained in debian-binary.
+
+Tar Archives
+-------------
+.. class:: TarFile(file[, min: int, max: int, comp: str])
+
+ A TarFile object represents a single .tar file stream.
+
+ The parameter *file* may be a string specifying the path of a file, or
+ a :class:`file`-like object providing the :meth:`fileno` method. It may
+ also be an int specifying a file descriptor (returned by e.g.
+ :func:`os.open`).
+
+ The parameter *min* describes the offset in the file where the archive
+ begins and the parameter *max* is the size of the archive.
+
+ The compression of the archive is set by the parameter *comp*. It can
+ be set to any program supporting the -d switch, the default being gzip.
+
+ .. method:: extractall([rootdir: str]) -> True
+
+ Extract the archive in the current directory. The argument *rootdir*
+ can be used to change the target directory.
+
+ .. method:: extractdata(member: str) -> bytes
+
+ Return the contents of the member, as a bytes object. Raise
+ LookupError if there is no member with the given name.
+
+ .. method:: go(callback: callable[, member: str]) -> True
+
+ Go through the archive and call the callable *callback* for each
+ member with 2 arguments. The first argument is the :class:`TarMember`
+ and the second one is the data, as bytes.
+
+ The optional parameter *member* can be used to specify the member for
+ which call the callback. If not specified, it will be called for all
+ members. If specified and not found, LookupError will be raised.
+
+.. class:: TarMember
+
+ Represent a single member of a 'tar' archive.
+
+ This class which has been modelled after :class:`tarfile.TarInfo`
+ represents information about a given member in an archive.
+
+ .. method:: isblk()
+
+ Determine whether the member is a block device.
+
+ .. method:: ischr()
+
+ Determine whether the member is a character device.
+
+ .. method:: isdev()
+
+ Determine whether the member is a device (block,character or FIFO).
+
+ .. method:: isdir()
+
+ Determine whether the member is a directory.
+
+ .. method:: isfifo()
+
+ Determine whether the member is a FIFO.
+
+ .. method:: isfile()
+
+ Determine whether the member is a regular file.
+
+ .. method:: islnk()
+
+ Determine whether the member is a hardlink.
+
+ .. method:: isreg()
+
+ Determine whether the member is a regular file, same as isfile().
+
+ .. method:: issym()
+
+ Determine whether the member is a symbolic link.
+
+ .. attribute:: gid
+
+ The owner's group id
+
+ .. attribute:: linkname
+
+ The target of the link.
+
+ .. attribute:: major
+
+ The major ID of the device.
+
+ .. attribute:: minor
+
+ The minor ID of the device.
+
+ .. attribute:: mode
+
+ The mode (permissions).
+
+ .. attribute:: mtime
+
+ Last time of modification.
+
+ .. attribute:: name
+
+ The name of the file.
+
+ .. attribute:: size
+
+ The size of the file.
+
+ .. attribute:: uid
+
+ The owner's user id.
+
+
+
+Deprecated functions
+---------------------
+The following functions have been shipped in python-apt for a longer time and
+are deprecated as of release 0.7.92. They are listed here to help developers
+to port their applications to the new API which is completely different. For
+this purpose each function documentation includes an example showing how the
+function can be replaced.
+
+.. function:: arCheckMember(file, membername)
+
+ Check if the member specified by the parameter *membername* exists in
+ the AR file referenced by the parameter *file*, which may be a
+ :class:`file()` object, a file descriptor, or anything implementing a
+ :meth:`fileno` method.
+
+ This function has been replaced by using the :keyword:`in` check on an
+ :class:`ArArchive` object::
+
+ member in ArArchive(file)
+
+.. function:: debExtract(file, func, chunk)
+
+ Call the function referenced by *func* for each member of the tar file
+ *chunk* which is contained in the AR file referenced by the parameter
+ *file*, which may be a :class:`file()` object, a file descriptor, or
+ anything implementing a :meth:`fileno` method.
+
+ The function *func* is a callback with the signature
+ ``(what, name, link, mode, uid, gid, size, mtime, major, minor)``. The
+ parameter *what* describes the type of the member. It can be 'FILE',
+ 'DIR', or 'HARDLINK'. The parameter *name* refers to the name of the
+ member. In case of links, *link* refers to the target of the link.
+
+ This function is deprecated and has been replaced by the :meth:`TarFile.go`
+ method. The following example shows the old code and the new code::
+
+ debExtract(open("package.deb"), my_callback, "data.tar.gz") #old
+
+ DebFile("package.deb").data.go(my_callback)
+
+ Please note that the signature of the callback is different in
+ :meth:`TarFile.go`.
+
+.. function:: tarExtract(file,func,comp)
+
+ Call the function *func* for each member of the tar file *file*.
+
+ The parameter *comp* is a string determining the compressor used. Possible
+ options are "lzma", "bzip2" and "gzip". The parameter *file* may be
+ a :class:`file()` object, a file descriptor, or anything implementing
+ a :meth:`fileno` method.
+
+ The function *func* is a callback with the signature
+ ``(what, name, link, mode, uid, gid, size, mtime, major, minor)``. The
+ parameter *what* describes the type of the member. It can be 'FILE',
+ 'DIR', or 'HARDLINK'. The parameter *name* refers to the name of the
+ member. In case of links, *link* refers to the target of the link.
+
+ This function is deprecated and has been replaced by the :meth:`TarFile.go`
+ method. The following example shows the old code and the new code::
+
+ tarExtract(open("archive.tar.gz"), my_callback, "gzip") #old
+ TarFile("archive.tar.gz", 0, 0, "gzip").go(my_callback)
+
+ Please note that the signature of the callback is different in
+ :meth:`TarFile.go`.
+
+.. function:: debExtractArchive(file, rootdir)
+
+ Extract the archive referenced by the :class:`file` object *file*
+ into the directory specified by *rootdir*.
+
+ The parameter *file* may be a :class:`file()` object, a file descriptor, or
+ anything implementing a :meth:`fileno` method.
+
+ This function has been replaced by :meth:`TarFile.extractall` and
+ :attr:`DebFile.data`::
+
+ debExtractArchive(open("package.deb"), rootdir) # old
+ DebFile("package.deb").data.extractall(rootdir) # new
+
+.. function:: debExtractControl(file[, member='control'])
+
+ Return the indicated file as a string from the control tar. The default
+ is 'control'. The parameter *file* may be a :class:`file()` object, a
+ file descriptor, or anything implementing a :meth:`fileno` method.
+
+ This function has been replaced by :attr:`DebFile.control` and
+ :meth:`TarFile.extractdata`. In the following example, both commands
+ return the contents of the control file::
+
+ debExtractControl(open("package.deb"))
+ DebFile("package.deb").control.extractdata("control")
diff --git a/doc/source/library/apt_pkg.rst b/doc/source/library/apt_pkg.rst
new file mode 100644
index 00000000..05b3e1fc
--- /dev/null
+++ b/doc/source/library/apt_pkg.rst
@@ -0,0 +1,2023 @@
+:mod:`apt_pkg` --- The low-level bindings for apt-pkg
+=====================================================
+.. module:: apt_pkg
+
+The apt_pkg extensions provides a more low-level way to work with apt. It can
+do everything apt can, and is written in C++. It has been in python-apt since
+the beginning.
+
+Module Initialization
+---------------------
+
+Initialization is needed for most functions, but not for all of them. Some can
+be called without having run init*(), but will not return the expected value.
+
+.. function:: init_config
+
+ Initialize the configuration of apt. This is needed for most operations.
+
+.. function:: init_system
+
+ Initialize the system.
+
+.. function:: init
+
+ A short cut to calling :func:`init_config` and :func:`init_system`. You
+ can use this if you do not use the command line parsing facilities provided
+ by :func:`parse_commandline`, otherwise call :func:`init_config`, parse
+ the commandline afterwards and finally call :func:`init_system`.
+
+
+Working with the cache
+----------------------
+.. class:: Cache([progress])
+
+ Return a :class:`Cache()` object. The optional parameter *progress*
+ specifies an instance of :class:`apt.progress.OpProgress()` which will
+ display the open progress.
+
+ .. describe:: cache[pkgname]
+
+ Return the :class:`Package()` object for the package name given by
+ *pkgname*.
+
+ .. method:: update(progress, list[, pulse_interval])
+
+ Update the package cache.
+
+ The parameter *progress* points to an :class:`apt.progress.FetchProgress()`
+ object. The parameter *list* refers to a :class:`SourceList()` object.
+
+ The optional parameter *pulse_interval* describes the interval between
+ the calls to the :meth:`FetchProgress.pulse` method.
+
+ .. attribute:: depends_count
+
+ The total number of dependencies.
+
+ .. attribute:: package_count
+
+ The total number of packages available in the cache.
+
+ .. attribute:: packages
+
+ A sequence of :class:`Package` objects.
+
+ .. attribute:: provides_count
+
+ The number of provided packages.
+
+ .. attribute:: ver_file_count
+
+ .. todo:: Seems to be some mixture of versions and pkgFile.
+
+ .. attribute:: version_count
+
+ The total number of package versions available in the cache.
+
+ .. attribute:: package_file_count
+
+ The total number of Packages files available (the Packages files
+ listing the packages). This is the same as the length of the list in
+ the attribute :attr:`file_list`.
+
+ .. attribute:: file_list
+
+ A list of :class:`PackageFile` objects.
+
+.. class:: DepCache(cache)
+
+ Return a :class:`DepCache` object. The parameter *cache* specifies an
+ instance of :class:`Cache`.
+
+ The DepCache object contains various methods to manipulate the cache,
+ to install packages, to remove them, and much more.
+
+ .. method:: commit(fprogress, iprogress)
+
+ Apply all the changes made.
+
+ The parameter *fprogress* has to be set to an instance of
+ apt.progress.FetchProgress or one of its subclasses.
+
+ The parameter *iprogress* has to be set to an instance of
+ apt.progress.InstallProgress or one of its subclasses.
+
+ .. method:: fix_broken()
+
+ Try to fix all broken packages in the cache.
+
+ .. method:: get_candidate_ver(pkg)
+
+ Return the candidate version of the package, ie. the version that
+ would be installed normally.
+
+ The parameter *pkg* refers to an :class:`Package` object,
+ available using the :class:`pkgCache`.
+
+ This method returns a :class:`Version` object.
+
+ .. method:: set_candidate_ver(pkg, version)
+
+ The opposite of :meth:`pkgDepCache.get_candidate_ver`. Set the candidate
+ version of the :class:`Package` *pkg* to the :class:`Version`
+ *version*.
+
+ .. method:: upgrade([dist_upgrade=False])
+
+ Perform an upgrade. More detailed, this marks all the upgradable
+ packages for upgrade. You still need to call
+ :meth:`pkgDepCache.commit` for the changes to apply.
+
+ To perform a dist-upgrade, the optional parameter *dist_upgrade* has
+ to be set to True.
+
+ .. method:: fix_broken()
+
+ Fix broken packages.
+
+ .. method:: read_pinfile()
+
+ Read the policy, eg. /etc/apt/preferences.
+
+ .. method:: minimize_upgrade()
+
+ Go over the entire set of packages and try to keep each package marked
+ for upgrade. If a conflict is generated then the package is restored.
+
+ .. todo::
+ Explain better..
+
+ .. method:: mark_auto(pkg)
+
+ Mark the :class:`Package` *pkg* as automatically installed.
+
+ .. method:: mark_keep(pkg)
+
+ Mark the :class:`Package` *pkg* for keep.
+
+ .. method:: mark_delete(pkg[, purge])
+
+ Mark the :class:`Package` *pkg* for delete. If *purge* is True,
+ the configuration files will be removed as well.
+
+ .. method:: mark_install(pkg[, auto_inst=True[, from_user=True]])
+
+ Mark the :class:`Package` *pkg* for install.
+
+ If *auto_inst* is ``True``, the dependencies of the package will be
+ installed as well. This is the default.
+
+ If *from_user* is ``True``, the package will be marked as manually
+ installed. This is the default.
+
+ .. method:: set_reinstall(pkg)
+
+ Set if the :class:`Package` *pkg* should be reinstalled.
+
+ .. method:: is_upgradable(pkg)
+
+ Return ``1`` if the package is upgradable.
+
+ The package can be upgraded by calling :meth:`pkgDepCache.MarkInstall`.
+
+ .. method:: is_now_broken(pkg)
+
+ Return `1` if the package is broken now (including changes made, but
+ not committed).
+
+ .. method:: is_inst_broken(pkg)
+
+ Return ``1`` if the package is broken on the current install. This
+ takes changes which have not been committed not into effect.
+
+ .. method:: is_garbage(pkg)
+
+ Return ``1`` if the package is garbage, ie. if it is automatically
+ installed and no longer referenced by other packages.
+
+ .. method:: is_auto_installed(pkg)
+
+ Return ``1`` if the package is automatically installed (eg. as the
+ dependency of another package).
+
+ .. method:: marked_install(pkg)
+
+ Return ``1`` if the package is marked for install.
+
+ .. method:: marked_upgrade(pkg)
+
+ Return ``1`` if the package is marked for upgrade.
+
+ .. method:: marked_delete(pkg)
+
+ Return ``1`` if the package is marked for delete.
+
+ .. method:: marked_keep(pkg)
+
+ Return ``1`` if the package is marked for keep.
+
+ .. method:: marked_reinstall(pkg)
+
+ Return ``1`` if the package should be installed.
+
+ .. method:: marked_downgrade(pkg)
+
+ Return ``1`` if the package should be downgraded.
+
+ .. attribute:: keep_count
+
+ Integer, number of packages marked as keep
+
+ .. attribute:: inst_count
+
+ Integer, number of packages marked for installation.
+
+ .. attribute:: del_count
+
+ Number of packages which should be removed.
+
+ .. attribute:: broken_count
+
+ Number of packages which are broken.
+
+ .. attribute:: usr_size
+
+ The size required for the changes on the filesystem. If you install
+ packages, this is positive, if you remove them its negative.
+
+ .. attribute:: deb_size
+
+ The size of the packages which are needed for the changes to be
+ applied.
+
+ .. attribute:: policy
+
+ The underlying :class:`Policy` object used by the :class:`DepCache` to
+ select candidate versions.
+
+
+.. class:: PackageManager(depcache)
+
+ Return a new :class:`PackageManager` object. The parameter *depcache*
+ specifies a :class:`DepCache` object.
+
+ :class:`PackageManager` objects provide several methods and attributes,
+ which will be listed here:
+
+ .. method:: get_archives(fetcher, list, records)
+
+ Add all the selected packages to the :class:`Acquire()` object
+ *fetcher*.
+
+ The parameter *list* refers to a :class:`SourceList()` object.
+
+ The parameter *records* refers to a :class:`PackageRecords()` object.
+
+ .. method:: do_install()
+
+ Install the packages.
+
+ .. method:: fix_missing
+
+ Fix the installation if a package could not be downloaded.
+
+ .. attribute:: RESULT_COMPLETED
+
+ A constant for checking whether the the result is 'completed'.
+
+ Compare it against the return value of :meth:`PackageManager.get_archives`
+ or :meth:`PackageManager.do_install`.
+
+ .. attribute:: RESULT_FAILED
+
+ A constant for checking whether the the result is 'failed'.
+
+ Compare it against the return value of :meth:`PackageManager.get_archives`
+ or :meth:`PackageManager.do_install`.
+
+ .. attribute:: RESULT_INCOMPLETE
+
+ A constant for checking whether the the result is 'incomplete'.
+
+ Compare it against the return value of :meth:`PackageManager.get_archives`
+ or :meth:`PackageManager.do_install`.
+
+Improve performance with :class:`ActionGroup`
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+.. class:: ActionGroup(depcache)
+
+ Create a new :class:`ActionGroup()` object for the :class:`DepCache` object
+ given by the parameter *depcache*.
+
+ :class:`ActionGroup()` objects make operations on the cache faster by
+ delaying certain cleanup operations until the action group is released.
+
+ ActionGroup is also a context manager and therefore supports the
+ :keyword:`with` statement. But because it becomes active as soon as it
+ is created, you should not create an ActionGroup() object before entering
+ the with statement.
+
+ If you want to use ActionGroup as a with statement (which is recommended
+ because it makes it easier to see when an actiongroup is active), always
+ use the following form::
+
+ with apt_pkg.ActionGroup(depcache):
+ ...
+
+ For code which has to run on Python versions prior to 2.5, you can also
+ use the traditional way::
+
+ actiongroup = apt_pkg.ActionGroup(depcache)
+ ...
+ actiongroup.release()
+
+ :class:`ActionGroup` provides the following method:
+
+ .. method:: release()
+
+ Release the ActionGroup. This will reactive the collection of package
+ garbage.
+
+Resolving Dependencies
+^^^^^^^^^^^^^^^^^^^^^^
+
+.. class:: ProblemResolver(depcache)
+
+ Return a new :class:`ProblemResolver` object. The parameter *depcache*
+ specifies a :class:`pDepCache` object.
+
+ The problem resolver helps when there are problems in the package
+ selection. An example is a package which conflicts with another, already
+ installed package.
+
+ .. method:: protect(pkg)
+
+ Protect the :class:`Package()` object given by the parameter *pkg*.
+
+ .. todo::
+
+ Really document it.
+
+ .. method:: install_protect()
+
+ Protect all installed packages from being removed.
+
+ .. method:: remove(pkg)
+
+ Remove the :class:`Package()` object given by the parameter *pkg*.
+
+ .. todo::
+
+ Really document it.
+
+ .. method:: clear(pkg)
+
+ Reset the :class:`Package()` *pkg* to the default state.
+
+ .. todo::
+
+ Really document it.
+
+ .. method:: resolve()
+
+ Try to resolve problems by installing and removing packages.
+
+ .. method:: resolve_by_keep()
+
+ Try to resolve problems only by using keep.
+
+
+:class:`Package`
+^^^^^^^^^^^^^^^^^
+.. class:: Package
+
+ The pkgCache::Package objects are an interface to package specific
+ features.
+
+
+ Attributes:
+
+ .. attribute:: current_ver
+
+ The version currently installed, or None. This returns a
+ :class:`Version` object.
+
+ .. attribute:: id
+
+ The ID of the package. This can be used to store information about
+ the package. The ID is an int value.
+
+ .. attribute:: name
+
+ This is the name of the package.
+
+ .. attribute:: provides_list
+
+ A list of packages providing this package. More detailed, this is a
+ list of tuples (str:pkgname, ????, :class:`Version`).
+
+ If you want to check for check for virtual packages, the expression
+ ``pkg.provides_list and not pkg._version_list`` helps you. It detects if
+ the package is provided by something else and is not available as a
+ real package.
+
+ .. attribute:: rev_depends_list
+
+ An iterator of :class:`Dependency` objects for dependencies on this
+ package.
+
+ .. attribute:: section
+
+ The section of the package, as specified in the record. The list of
+ possible sections is defined in the Policy.
+
+ .. attribute:: version_list
+
+ A list of :class:`Version` objects for all versions available in the
+ cache.
+
+ **States**:
+
+ .. attribute:: selected_state
+
+ The state we want it to be, ie. if you mark a package for installation,
+ this is :attr:`apt_pkg.SELSTATE_INSTALL`.
+
+ See :ref:`SelStates` for a list of available states.
+
+ .. attribute:: inst_state
+
+ The state the currently installed version is in. This is normally
+ :attr:`apt_pkg.INSTSTATE_OK`, unless the installation failed.
+
+ See :ref:`InstStates` for a list of available states.
+
+ .. attribute:: current_state
+
+ The current state of the package (not installed, unpacked, installed,
+ etc). See :ref:`CurStates` for a list of available states.
+
+ **Flags**:
+
+ .. attribute:: auto
+
+ Whether the package was installed automatically as a dependency of
+ another package. (or marked otherwise as automatically installed)
+
+ .. attribute:: essential
+
+ Whether the package is essential.
+
+ .. attribute:: important
+
+ Whether the package is important.
+
+Example:
+~~~~~~~~~
+.. literalinclude:: ../examples/cache-packages.py
+
+
+
+:class:`Version`
+^^^^^^^^^^^^^^^^^
+.. class:: Version
+
+ The version object contains all information related to a specific package
+ version.
+
+ .. attribute:: ver_str
+
+ The version, as a string.
+
+ .. attribute:: section
+
+ The usual sections (eg. admin, net, etc.). Prefixed with the component
+ name for packages not in main (eg. non-free/admin).
+
+ .. attribute:: arch
+
+ The architecture of the package, eg. amd64 or all.
+
+ .. attribute:: file_list
+
+ A list of (:class:`PackageFile`, int: index) tuples for all Package
+ files containing this version of the package.
+
+ .. attribute:: depends_list_str
+
+ A dictionary of dependencies. The key specifies the type of the
+ dependency ('Depends', 'Recommends', etc.).
+
+ The value is a list, containing items which refer to the or-groups of
+ dependencies. Each of these or-groups is itself a list, containing
+ tuples like ('pkgname', 'version', 'relation') for each or-choice.
+
+ An example return value for a package with a 'Depends: python (>= 2.4)'
+ would be::
+
+ {'Depends': [
+ [
+ ('python', '2.4', '>=')
+ ]
+ ]
+ }
+
+ The same for a dependency on A (>= 1) | B (>= 2)::
+
+ {'Depends': [
+ [
+ ('A', '1', '>='),
+ ('B', '2', '>='),
+ ]
+ ]
+ }
+
+ .. attribute:: depends_list
+
+ This is basically the same as :attr:`Version.DependsListStr`,
+ but instead of the ('pkgname', 'version', 'relation') tuples,
+ it returns :class:`Dependency` objects, which can assist you with
+ useful functions.
+
+ .. attribute:: parent_pkg
+
+ The :class:`Package` object this version belongs to.
+
+ .. attribute:: provides_list
+
+ This returns a list of all packages provided by this version. Like
+ :attr:`Package.provides_list`, it returns a list of tuples
+ of the form ('virtualpkgname', ???, :class:`Version`), where as the
+ last item is the same as the object itself.
+
+ .. attribute:: size
+
+ The size of the .deb file, in bytes.
+
+ .. attribute:: installed_size
+
+ The size of the package (in kilobytes), when unpacked on the disk.
+
+ .. attribute:: hash
+
+ An integer hash value.
+
+ .. attribute:: id
+
+ An integer id.
+
+ .. attribute:: priority
+
+ The integer representation of the priority. This can be used to speed
+ up comparisons a lot, compared to :attr:`Version.priority_str`.
+
+ The values are defined in the :mod:`apt_pkg` extension, see
+ :ref:`Priorities` for more information.
+
+ .. attribute:: priority_str
+
+ Return the priority of the package version, as a string, eg.
+ "optional".
+
+ .. attribute:: downloadable
+
+ Whether this package can be downloaded from a remote site.
+
+ .. attribute:: translated_description
+
+ Return a :class:`Description` object.
+
+
+:class:`Dependency`
+^^^^^^^^^^^^^^^^^^^^
+.. class:: Dependency
+
+ Represent a dependency from one package to another one.
+
+ .. method:: all_targets
+
+ A list of :class:`Version` objects which satisfy the dependency,
+ and do not conflict with already installed ones.
+
+ From my experience, if you use this method to select the target
+ version, it is the best to select the last item unless any of the
+ other candidates is already installed. This leads to results being
+ very close to the normal package installation.
+
+ .. method:: smart_target_pkg
+
+ Return a :class:`Version` object of a package which satisfies the
+ dependency and does not conflict with installed packages
+ (the 'natural target').
+
+ .. attribute:: target_ver
+
+ The target version of the dependency, as string. Empty string if the
+ dependency is not versioned.
+
+ .. attribute:: target_pkg
+
+ The :class:`Package` object of the target package.
+
+ .. attribute:: parent_ver
+
+ The :class:`Version` object of the parent version, ie. the package
+ which declares the dependency.
+
+ .. attribute:: parent_pkg
+
+ The :class:`Package` object of the package which declares the
+ dependency. This is the same as using ParentVer.ParentPkg.
+
+ .. attribute:: comp_type
+
+ The type of comparison (>=, ==, >>, <=), as string.
+
+ .. attribute:: dep_type
+
+ The type of the dependency, as string, eg. "Depends".
+
+ .. attribute:: dep_type_enum
+
+ The type of the dependency, as an integer which can be compared to
+ one of the TYPE_* constants below.
+
+ .. attribute:: dep_type_untranslated
+
+ The type of the depndency, as an untranslated string.
+
+ .. attribute:: id
+
+ The ID of the package, as integer.
+
+ .. attribute:: TYPE_CONFLICTS
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_DEPENDS
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_DPKG_BREAKS
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_ENHANCES
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_OBSOLETES
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_PREDEPENDS
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_RECOMMENDS
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_REPLACES
+
+ Constant for checking against dep_type_enum
+
+ .. attribute:: TYPE_SUGGESTS
+
+ Constant for checking against dep_type_enum
+
+Example: Find all missing dependencies
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+With the help of Dependency.AllTargets(), you can easily find all packages with
+broken dependencies:
+
+.. literalinclude:: ../examples/missing-deps.py
+
+
+:class:`Description`
+^^^^^^^^^^^^^^^^^^^^^
+.. class:: Description
+
+ Represent the description of the package.
+
+ .. attribute:: language_code
+
+ The language code of the description
+
+ .. attribute:: md5
+
+ The md5 hashsum of the description
+
+ .. attribute:: file_list
+
+ A list of tuples (:class:`PackageFile`, int: index).
+
+
+
+Index Files
+-------------
+
+
+.. todo::
+
+ Complete them
+
+.. class:: MetaIndex
+
+ .. attribute:: uri
+ .. attribute:: dist
+ .. attribute:: is_trusted
+ .. attribute:: index_files
+
+
+.. class:: IndexFile
+
+ .. method:: archive_uri(path)
+
+ Return the full url to path in the archive.
+
+ .. attribute:: label
+
+ Return the Label.
+
+ .. attribute:: describe
+
+ A description of the :class:`IndexFile`.
+
+ .. attribute:: exists
+
+ Return whether the file exists.
+
+ .. attribute:: has_packages
+
+ Return whether the file has packages.
+
+ .. attribute:: size
+
+ Size of the file
+
+ .. attribute:: is_trusted
+
+ Whether we can trust the file.
+
+
+.. class:: PackageFile
+
+ A :class:`PackageFile` represents a Packages file, eg.
+ /var/lib/dpkg/status.
+
+ .. attribute:: architecture
+
+ The architecture of the package file.
+
+ .. attribute:: archive
+
+ The archive (eg. unstable)
+
+ .. attribute:: component
+
+ The component (eg. main)
+
+ .. attribute:: filename
+
+ The name of the file.
+
+ .. attribute:: id
+
+ The ID of the package. This is an integer which can be used to store
+ further information about the file [eg. as dictionary key].
+
+ .. attribute:: index_type
+
+ The sort of the index file. In normal cases, this is
+ 'Debian Package Index'.
+
+ .. attribute:: label
+
+ The Label, as set in the Release file
+
+ .. attribute:: not_automatic
+
+ Whether packages from this list will be updated automatically. The
+ default for eg. example is 0 (aka false).
+
+ .. attribute:: not_source
+
+ Whether the file has no source from which it can be updated. In such a
+ case, the value is 1; else 0. /var/lib/dpkg/status is 0 for example.
+
+ Example::
+
+ for pkgfile in cache.file_list:
+ if pkgfile.not_source:
+ print 'The file %s has no source.' % pkgfile.filename
+
+ .. attribute:: origin
+
+ The Origin, as set in the Release file
+
+ .. attribute:: site
+
+ The hostname of the site.
+
+ .. attribute:: size
+
+ The size of the file.
+
+ .. attribute:: version
+
+ The version, as set in the release file (eg. "4.0" for "Etch")
+
+
+
+The following example shows how to use PackageFile:
+
+.. literalinclude:: ../examples/cache-pkgfile.py
+
+
+Records
+--------
+
+.. class:: PackageRecords(cache)
+
+ Create a new :class:`PackageRecords` object, for the packages in the cache
+ specified by the parameter *cache*.
+
+ Provide access to the packages records. This provides very useful
+ attributes for fast (convient) access to some fields of the record.
+
+ .. method:: lookup(verfile_iter)
+
+ Change the actual package to the package given by the verfile_iter.
+
+ The parameter *verfile_iter* refers to a tuple consisting
+ of (:class:`PackageFile()`, int: index), as returned by various
+ attributes, including :attr:`Version.file_list`.
+
+ Example (shortened)::
+
+ cand = depcache.GetCandidateVer(cache['python-apt'])
+ records.Lookup(cand.FileList[0])
+ # Now you can access the record
+ print records.SourcePkg # == python-apt
+
+ .. attribute:: filename
+
+ Return the field 'Filename' of the record. This is the path to the
+ package, relative to the base path of the archive.
+
+ .. attribute:: md5_hash
+
+ Return the MD5 hashsum of the package This refers to the field
+ 'MD5Sum' in the raw record.
+
+ .. attribute:: sha1_hash
+
+ Return the SHA1 hashsum of the package. This refers to the field 'SHA1'
+ in the raw record.
+
+ .. attribute:: sha256_hash
+
+ Return the SHA256 hashsum of the package. This refers to the field
+ 'SHA256' in the raw record.
+
+ .. versionadded:: 0.7.9
+
+ .. attribute:: source_pkg
+
+ Return the source package.
+
+ .. attribute:: source_ver
+
+ Return the source version.
+
+ .. attribute:: maintainer
+
+ Return the maintainer of the package.
+
+ .. attribute:: short_desc
+
+ Return the short description. This is the summary on the first line of
+ the 'Description' field.
+
+ .. attribute:: long_desc
+
+ Return the long description. These are lines 2-END from the
+ 'Description' field.
+
+ .. attribute:: name
+
+ Return the name of the package. This is the 'Package' field.
+
+ .. attribute:: homepage
+
+ Return the Homepage. This is the 'Homepage' field.
+
+ .. attribute:: record
+
+ Return the whole record as a string. If you want to access fields of
+ the record not available as an attribute, you can use
+ :class:`apt_pkg.TagSection` to parse the record and access the field
+ name.
+
+ Example::
+
+ section = apt_pkg.TagSection(records.record)
+ print section['SHA256'] # Use records.sha256_hash instead
+
+
+.. class:: SourceRecords
+
+ This represents the entries in the Sources files, ie. the dsc files of
+ the source packages.
+
+ .. note::
+
+ If the Lookup failed, because no package could be found, no error is
+ raised. Instead, the attributes listed below are simply not existing
+ anymore (same applies when no Lookup has been made, or when it has
+ been restarted).
+
+ .. method:: lookup(pkgname)
+
+ Lookup the record for the package named *pkgname*. To access all
+ available records, you need to call it multiple times.
+
+ Imagine a package P with two versions X, Y. The first ``lookup(P)``
+ would set the record to version X and the second ``lookup(P)`` to
+ version Y.
+
+ .. method:: restart()
+
+ Restart the lookup.
+
+ Imagine a package P with two versions X, Y. The first ``Lookup(P)``
+ would set the record to version X and the second ``Lookup(P)`` to
+ version Y.
+
+ If you now call ``restart()``, the internal position will be cleared.
+ Now you can call ``lookup(P)`` again to move to X.
+
+ .. attribute:: package
+
+ The name of the source package.
+
+ .. attribute:: version
+
+ A string describing the version of the source package.
+
+ .. attribute:: maintainer
+
+ A string describing the name of the maintainer.
+
+ .. attribute:: section
+
+ A string describing the section.
+
+ .. attribute:: record
+
+ The whole record, as a string. You can use :func:`apt_pkg.ParseSection`
+ if you need to parse it.
+
+ You need to parse the record if you want to access fields not available
+ via the attributes, eg. 'Standards-Version'
+
+ .. attribute:: binaries
+
+ Return a list of strings describing the package names of the binaries
+ created by the source package. This matches the 'Binary' field in the
+ raw record.
+
+ .. attribute:: index
+
+ The index in the Sources files.
+
+ .. attribute:: files
+
+ The list of files. This returns a list of tuples with the contents
+ ``(str: md5, int: size, str: path, str:type)``.
+
+ .. attribute:: build_depends
+
+ Return a dictionary representing the build-time dependencies of the
+ package. The format is the same as for :attr:`Version.depends_list_str`
+ and possible keys being ``"Build-Depends"``, ``"Build-Depends-Indep"``,
+ ``"Build-Conflicts"`` or ``"Build-Conflicts-Indep"``.
+
+
+The Acquire interface
+----------------------
+The Acquire Interface is responsible for all sorts of downloading in apt. All
+packages, index files, etc. downloading is done using the Acquire functionality.
+
+The :mod:`apt_pkg` module provides a subset of this functionality which allows
+you to implement file downloading in your applications. Together with the
+:class:`PackageManager` class you can also fetch all the packages marked for
+installation.
+
+
+.. class:: Acquire([progress])
+
+ Return an :class:`Acquire` object. The parameter *progress* refers to
+ an :class:`apt.progress.FetchProgress()` object.
+
+ Acquire objects maintaing a list of items which will be fetched or have
+ been fetched already during the lifetime of this object. To add new items
+ to this list, you can create new :class:`AcquireFile` objects which allow
+ you to add single files.
+
+ Acquire items have multiple methods and attributes:
+
+ .. method:: run()
+
+ Fetch all the items which have been added by :class:`AcquireFile`.
+
+ .. method:: shutdown()
+
+ Shut the fetcher down.
+
+ .. attribute:: total_needed
+
+ The total amount of bytes needed (including those of files which are
+ already present)
+
+ .. attribute:: fetch_needed
+
+ The total amount of bytes which need to be fetched.
+
+ .. attribute:: partial_present
+
+ Whether some files have been acquired already. (???)
+
+ .. attribute:: items
+
+ A list of :class:`AcquireItem` objects which are attached to the
+ queue of this object.
+
+ .. attribute:: workers
+
+ A list of :class:`AcquireWorker` objects which are currently active
+ on this instance.
+
+.. class:: AcquireItem
+
+ The :class:`AcquireItem()` objects represent the items of a
+ :class:`Acquire` object. :class:`AcquireItem()` objects can not be created
+ by the user, they are solely available through the :attr:`Acquire.items`
+ list of an :class:`Acquire` object.
+
+ .. attribute:: id
+
+ The ID of the item.
+
+ .. attribute:: complete
+
+ Is the item completely acquired?
+
+ .. attribute:: local
+
+ Is the item a local file?
+
+ .. attribute:: mode
+
+ A string indicating the current mode e.g. ``"Fetching"``.
+
+ .. attribute:: is_trusted
+
+ Can the file be trusted?
+
+ .. attribute:: filesize
+
+ The size of the file, in bytes.
+
+ .. attribute:: error_text
+
+ The error message. For example, when a file does not exist on a http
+ server, this will contain a 404 error message.
+
+ .. attribute:: destfile
+
+ The location the file is saved as.
+
+ .. attribute:: desc_uri
+
+ The source location.
+
+ **Status**:
+
+ .. attribute:: status
+
+ Integer, representing the status of the item.
+
+ .. attribute:: STAT_IDLE
+
+ Constant for comparing :attr:`AcquireItem.status`.
+
+ .. attribute:: STAT_FETCHING
+
+ Constant for comparing :attr:`AcquireItem.status`
+
+ .. attribute:: STAT_DONE
+
+ Constant for comparing :attr:`AcquireItem.status`
+
+ .. attribute:: STAT_ERROR
+
+ Constant for comparing :attr:`AcquireItem.status`
+
+ .. attribute:: STAT_AUTH_ERROR
+
+ Constant for comparing :attr:`AcquireItem.status`
+
+.. class:: AcquireFile(owner, uri[, md5, size, descr, short_descr, destdir, destfile])
+
+ Create a new :class:`AcquireFile()` object and register it with *acquire*,
+ so it will be fetched. You must always keep around a reference to the
+ object, otherwise it will be removed from the Acquire queue again.
+
+ The parameter *owner* refers to an :class:`Acquire()` object as returned
+ by :func:`GetAcquire`. The file will be added to the Acquire queue
+ automatically.
+
+ The parameter *uri* refers to the location of the file, any protocol
+ of apt is supported.
+
+ The parameter *md5* refers to the md5sum of the file. This can be used
+ for checking the file.
+
+ The parameter *size* can be used to specify the size of the package,
+ which can then be used to calculate the progress and validate the download.
+
+ The parameter *descr* is a descripition of the download. It may be
+ used to describe the item in the progress class. *short_descr* is the
+ short form of it.
+
+ You can use *destdir* to manipulate the directory where the file will
+ be saved in. Instead of *destdir*, you can also specify the full path to
+ the file using the parameter *destfile*. You can not combine both.
+
+ In terms of attributes, this class is a subclass of :class:`AcquireItem`
+ and thus inherits all its attributes.
+
+.. class:: AcquireWorker
+
+ An :class:`AcquireWorker` object represents a subprocess responsible for
+ fetching files from remote locations. This class is not instanciable from
+ Python.
+
+ .. attribute:: current_item
+
+ The item which is currently being fetched. This returns an
+ :class:`AcquireItemDesc` object.
+
+ .. attribute:: current_size
+
+ How many bytes of the file have been downloaded. Zero if the current
+ progress of the file cannot be determined.
+
+ .. attribute:: resumepoint
+
+ The amount of the file that was already downloaded prior to starting
+ this worker.
+
+ .. attribute:: status
+
+ The most recent status string received from the subprocess.
+
+ .. attribute:: total_size
+
+ The total number of bytes to be downloaded. Zero if the total size is
+ unknown.
+
+.. class:: AcquireItemDesc
+
+ An :class:`AcquireItemDesc` object stores information about the item which
+ can be used to describe the item.
+
+ .. attribute:: description
+
+ The long description given to the item.
+
+ .. attribute:: owner
+
+ The :class:`AcquireItem` object owning this object.
+
+ .. attribute:: shortdesc
+
+ A short description which has been given to this item.
+
+ .. attribute:: uri
+
+ The URI from which to download this item.
+
+.. class:: AcquireProgress
+
+ A monitor object for downloads controlled by the Acquire class. This is
+ an mostly abstract class. You should subclass it and implement the
+ methods to get something useful.
+
+ Methods defined here:
+
+ .. method:: done(item: AcquireItemDesc)
+
+ Invoked when an item is successfully and completely fetched.
+
+ .. method:: fail(item: AcquireItemDesc)
+
+ Invoked when the process of fetching an item encounters a fatal error.
+
+ .. method:: fetch(item: AcquireItemDesc)
+
+ Invoked when some of an item's data is fetched.
+
+ .. method:: ims_hit(item: AcquireItemDesc)
+
+ Invoked when an item is confirmed to be up-to-date. For instance,
+ when an HTTP download is informed that the file on the server was
+ not modified.
+
+ .. method:: media_change(media: str, drive: str) -> bool
+
+ Invoked when the user should be prompted to change the inserted
+ removable media.
+
+ This method should not return until the user has confirmed to the user
+ interface that the media change is complete.
+
+ The parameter *media* is the name of the media type that should be
+ changed, the parameter *drive* is the identifying name of the drive
+ whose media should be changed.
+
+ Return True if the user confirms the media change, False if it is
+ cancelled.
+
+ .. method:: pulse(owner: Acquire) -> bool
+
+ Periodically invoked while the Acquire process is underway.
+
+ Return False if the user asked to cancel the whole Acquire process.
+
+ .. method:: start()
+
+ Invoked when the Acquire process starts running.
+
+ .. method:: stop()
+
+ Invoked when the Acquire process stops running.
+
+ There are also some data descriptors:
+
+ .. attribute:: current_bytes
+
+ The number of bytes fetched.
+
+ .. attribute:: current_cps
+
+ The current rate of download, in bytes per second.
+
+ .. attribute:: current_items
+
+ The number of items that have been successfully downloaded.
+
+ .. attribute:: elapsed_time
+
+ The amount of time that has elapsed since the download started.
+
+ .. attribute:: fetched_bytes
+
+ The total number of bytes accounted for by items that were
+ successfully fetched.
+
+ .. attribute:: last_bytes
+
+ The number of bytes fetched as of the previous call to pulse(),
+ including local items.
+
+ .. attribute:: total_bytes
+
+ The total number of bytes that need to be fetched. This member is
+ inaccurate, as new items might be enqueued while the download is
+ in progress!
+
+ .. attribute:: total_items
+
+ The total number of items that need to be fetched. This member is
+ inaccurate, as new items might be enqueued while the download is
+ in progress!
+
+
+Hashes
+------
+The apt_pkg module also provides several hash functions. If you develop
+applications with python-apt it is often easier to use these functions instead
+of the ones provides in Python's :mod:`hashlib` module.
+
+The module provides the two classes :class:`Hashes` and :class:`HashString` for
+generic hash support:
+
+.. class:: Hashes(object)
+
+ Calculate all supported hashes of the object. *object* may either be a
+ string, in which cases the hashes of the string are calculated, or a
+ :class:`file()` object or file descriptor, in which case the hashes of
+ its contents is calculated. The calculated hashes are then available via
+ attributes:
+
+ .. attribute:: md5
+
+ The MD5 hash of the data, as string.
+
+ .. attribute:: sha1
+
+ The SHA1 hash of the data, as string.
+
+ .. attribute:: sha256
+
+ The SHA256 hash of the data, as string.
+
+.. class:: HashString(type: str, hash: str)
+
+ HashString objects store the type of a hash and the corresponding hash.
+ They are used by e.g :meth:`IndexRecords.lookup`. The first parameter,
+ *type* refers to one of MD5Sum, SHA1 and SHA256. The second parameter
+ *hash* is the corresponding hash.
+
+ .. describe:: str(hashstring)
+
+ Convert the HashString to a string by joining the hash type and the
+ hash using ':', e.g. ``"MD5Sum:d41d8cd98f00b204e9800998ecf8427e"``.
+
+ .. attribute:: hashtype
+
+ The type of the hash. This may be MD5Sum, SHA1 or SHA256.
+
+ .. method:: verify_file(filename: str) -> bool
+
+ Verify that the file given by the parameter *filename* matches the hash
+ stored in this object.
+
+The :mod:`apt_pkg` module also provides the functions :func:`md5sum`,
+:func:`sha1sum` and :func:`sha256sum` for creating a single hash from a
+:class:`bytes` or :class:`file` object:
+
+.. function:: md5sum(object)
+
+ Return the md5sum of the object. *object* may either be a string, in
+ which case the md5sum of the string is returned, or a :class:`file()`
+ object (or a file descriptor), in which case the md5sum of its contents is
+ returned.
+
+ .. versionchanged:: 0.8.0
+ Added support for using file descriptors.
+
+.. function:: sha1sum(object)
+
+ Return the sha1sum of the object. *object* may either be a string, in
+ which case the sha1sum of the string is returned, or a :class:`file()`
+ object (or a file descriptor), in which case the sha1sum of its contents
+ is returned.
+
+ .. versionchanged:: 0.8.0
+ Added support for using file descriptors.
+
+.. function:: sha256sum(object)
+
+ Return the sha256sum of the object. *object* may either be a string, in
+ which case the sha256sum of the string is returned, or a :class:`file()`
+ object (or a file descriptor), in which case the sha256sum of its contents
+ is returned.
+
+ .. versionchanged:: 0.8.0
+ Added support for using file descriptors.
+
+Debian control files
+--------------------
+Debian control files are files containing multiple stanzas of :RFC:`822`-style
+header sections. They are widely used in the Debian community, and can represent
+many kinds of information. One example for such a file is the
+:file:`/var/lib/dpkg/status` file which contains a list of the currently
+installed packages.
+
+The :mod:`apt_pkg` module provides two classes to read those files and parts
+thereof and provides a function :func:`RewriteSection` which takes a
+:class:`TagSection()` object and sorting information and outputs a sorted
+section as a string.
+
+.. class:: TagFile(file)
+
+ An object which represents a typical debian control file. Can be used for
+ Packages, Sources, control, Release, etc. Such an object provides two
+ kinds of API which should not be used together:
+
+ The first API implements the iterator protocol and should be used whenever
+ possible because it has less side effects than the other one. It may be
+ used e.g. with a for loop::
+
+ tagf = apt_pkg.TagFile(open('/var/lib/dpkg/status'))
+ for section in tagfile:
+ print section['Package']
+
+ .. method:: next()
+
+ A TagFile is its own iterator. This method is part of the iterator
+ protocol and returns a :class:`TagSection` object for the next
+ section in the file. If there is no further section, this method
+ raises the :exc:`StopIteration` exception.
+
+ From Python 3 on, this method is not available anymore, and the
+ global function ``next()`` replaces it.
+
+ The second API uses a shared :class:`TagSection` object which is exposed
+ through the :attr:`section` attribute. This object is modified by calls
+ to :meth:`step` and :meth:`jump`. This API provides more control and may
+ use less memory, but is not recommended because it works by modifying
+ one object. It can be used like this::
+
+ tagf = apt_pkg.TagFile(open('/var/lib/dpkg/status'))
+ tagf.step()
+ print tagf.section['Package']
+
+ .. method:: step
+
+ Step forward to the next section. This simply returns ``1`` if OK, and
+ ``0`` if there is no section.
+
+ .. method:: offset
+
+ Return the current offset (in bytes) from the beginning of the file.
+
+ .. method:: jump(offset)
+
+ Jump back/forward to *offset*. Use ``jump(0)`` to jump to the
+ beginning of the file again.
+
+ .. attribute:: section
+
+ This is the current :class:`TagSection()` instance.
+
+.. class:: TagSection(text)
+
+ Represent a single section of a debian control file.
+
+ .. describe:: section[key]
+
+ Return the value of the field at *key*. If *key* is not available,
+ raise :exc:`KeyError`.
+
+ .. describe:: key in section
+
+ Return ``True`` if *section* has a key *key*, else ``False``.
+
+ .. versionadded:: 0.8.0
+
+ .. method:: bytes
+
+ The number of bytes in the section.
+
+ .. method:: find(key, default='')
+
+ Return the value of the field at the key *key* if available,
+ else return *default*.
+
+ .. method:: find_flag(key)
+
+ Find a yes/no value for the key *key*. An example for such a
+ field is 'Essential'.
+
+ .. method:: get(key, default='')
+
+ Return the value of the field at the key *key* if available, else
+ return *default*.
+
+ .. method:: keys()
+
+ Return a list of keys in the section.
+
+.. function:: rewrite_section(section: TagSection, order: list, rewrite_list: list) -> str
+
+ Rewrite the section given by *section* using *rewrite_list*, and order the
+ fields according to *order*.
+
+ The parameter *order* is a :class:`list` object containing the names of the
+ fields in the order they should appear in the rewritten section.
+ :data:`apt_pkg.REWRITE_PACKAGE_ORDER` and
+ :data:`apt_pkg.REWRITE_SOURCE_ORDER` are two predefined lists for rewriting
+ package and source sections, respectively.
+
+ The parameter *rewrite_list* is a list of tuples of the form
+ ``(tag, newvalue[, renamed_to])``, whereas *tag* describes the field which
+ should be changed, *newvalue* the value which should be inserted or
+ ``None`` to delete the field, and the optional *renamed_to* can be used
+ to rename the field.
+
+.. data:: REWRITE_PACKAGE_ORDER
+
+ The order in which the information for binary packages should be rewritten,
+ i.e. the order in which the fields should appear.
+
+.. data:: REWRITE_SOURCE_ORDER
+
+ The order in which the information for source packages should be rewritten,
+ i.e. the order in which the fields should appear.
+
+Dependencies
+------------
+.. function:: check_dep(pkgver, op, depver)
+
+ Check that the dependency requirements consisting of op and depver can be
+ satisfied by the version pkgver.
+
+ Example::
+
+ >>> bool(apt_pkg.check_dep("1.0", ">=", "1"))
+ True
+
+The following two functions provide the ability to parse dependencies. They
+use the same format as :attr:`Version.depends_list_str`.
+
+.. function:: parse_depends(depends)
+
+ Parse the string *depends* which contains dependency information as
+ specified in Debian Policy, Section 7.1.
+
+ Returns a list. The members of this list are lists themselves and contain
+ one or more tuples in the format ``(package,version,operation)`` for every
+ 'or'-option given, e.g.::
+
+ >>> apt_pkg.parse_depends("PkgA (>= VerA) | PkgB (>= VerB)")
+ [[('PkgA', 'VerA', '>='), ('PkgB', 'VerB', '>=')]]
+
+
+ .. note::
+
+ The behavior of this function is different than the behavior of the
+ old function :func:`ParseDepends()`, because the third field
+ ``operation`` uses `>` instead of `>>` and `<` instead of `<<` which
+ is specified in control files.
+
+
+.. function:: parse_src_depends(depends)
+
+ Parse the string *depends* which contains dependency information as
+ specified in Debian Policy, Section 7.1.
+
+ Returns a list. The members of this list are lists themselves and contain
+ one or more tuples in the format ``(package,version,operation)`` for every
+ 'or'-option given, e.g.::
+
+ >>> apt_pkg.parse_depends("PkgA (>= VerA) | PkgB (>= VerB)")
+ [[('PkgA', 'VerA', '>='), ('PkgB', 'VerB', '>=')]]
+
+
+ Furthemore, this function also supports to limit the architectures, as
+ used in e.g. Build-Depends::
+
+ >>> apt_pkg.parse_src_depends("a (>= 01) [i386 amd64]")
+ [[('a', '01', '>=')]]
+
+ .. note::
+
+ The behavior of this function is different than the behavior of the
+ old function :func:`ParseDepends()`, because the third field
+ ``operation`` uses `>` instead of `>>` and `<` instead of `<<` which
+ is specified in control files.
+
+
+Configuration
+-------------
+
+.. class:: Configuration()
+
+ Configuration() objects store the configuration of apt, mostly created
+ from the contents of :file:`/etc/apt.conf` and the files in
+ :file:`/etc/apt.conf.d`.
+
+ .. describe:: key in conf
+
+ Return ``True`` if *conf* has a key *key*, else ``False``.
+
+ .. describe:: conf[key]
+
+ Return the value of the option given key *key*. If it does not
+ exist, raise :exc:`KeyError`.
+
+ .. describe:: conf[key] = value
+
+ Set the option at *key* to *value*.
+
+ .. method:: find(key[, default=''])
+
+ Return the value for the given key *key*. This is the same as
+ :meth:`Configuration.get`.
+
+ If *key* does not exist, return *default*.
+
+ .. method:: find_file(key[, default=''])
+
+ Return the filename hold by the configuration at *key*. This formats the
+ filename correctly and supports the Dir:: stuff in the configuration.
+
+ If *key* does not exist, return *default*.
+
+ .. method:: find_dir(key[, default='/'])
+
+ Return the absolute path to the directory specified in *key*. A
+ trailing slash is appended.
+
+ If *key* does not exist, return *default*.
+
+ .. method:: find_i(key[, default=0])
+
+ Return the integer value stored at *key*.
+
+ If *key* does not exist, return *default*.
+
+ .. method:: find_b(key[, default=0])
+
+ Return the boolean value stored at *key*. This returns an integer, but
+ it should be treated like True/False.
+
+ If *key* does not exist, return *default*.
+
+ .. method:: set(key, value)
+
+ Set the value of *key* to *value*.
+
+ .. method:: exists(key)
+
+ Check whether the key *key* exists in the configuration.
+
+ .. method:: subtree(key)
+
+ Return a sub tree starting at *key*. The resulting object can be used
+ like this one.
+
+ .. method:: list([key])
+
+ List all items at *key*. Normally, return the keys at the top level,
+ eg. APT, Dir, etc.
+
+ Use *key* to specify a key of which the childs will be returned.
+
+ .. method:: value_list([key])
+
+ Same as :meth:`Configuration.list`, but this time for the values.
+
+ .. method:: my_tag()
+
+ Return the tag name of the current tree. Normally this is an empty
+ string, but for subtrees it is the key of the subtree.
+
+ .. method:: clear(key)
+
+ Clear the configuration. Remove all values and keys at *key*.
+
+ .. method:: keys([key])
+
+ Return all the keys, recursive. If *key* is specified, ... (FIXME)
+
+ .. method:: get(key[, default=''])
+
+ This behaves just like :meth:`dict.get` and :meth:`Configuration.find`,
+ it returns the value of key or if it does not exist, *default*.
+
+.. data:: config
+
+ A :class:`Configuration()` object with the default configuration. This
+ object is initialized by calling :func:`init_config`.
+
+
+.. function:: read_config_file(configuration, filename)
+
+ Read the configuration file specified by the parameter *filename* and add
+ the settings therein to the :class:`Configuration()` object specified by
+ the parameter *configuration*
+
+.. function:: read_config_dir(configuration, dirname)
+
+ Read configuration files in the directory specified by the parameter
+ *dirname* and add the settings therein to the :class:`Configuration()`
+ object specified by the parameter *configuration*.
+
+.. function:: read_config_file_isc(configuration, filename)
+
+ Read the configuration file specified by the parameter *filename* and add
+ the settings therein to the :class:`Configuration()` object specified by
+ the parameter *configuration*
+
+.. function:: parse_commandline(configuration, options, argv)
+
+ This function is like getopt except it manipulates a configuration space.
+ output is a list of non-option arguments (filenames, etc). *options* is a
+ list of tuples of the form ``('c',"long-opt or None",
+ "Configuration::Variable","optional type")``.
+
+ Where ``type`` may be one of HasArg, IntLevel, Boolean, InvBoolean,
+ ConfigFile, or ArbItem. The default is Boolean.
+
+Locking
+--------
+When working on the global cache, it is important to lock the cache so other
+programs do not modify it. This module provides two context managers for
+locking the package system or file-based locking.
+
+.. class:: SystemLock
+
+ Context manager for locking the package system. The lock is established
+ as soon as the method __enter__() is called. It is released when
+ __exit__() is called. If the lock can not be acquired or can not be
+ released an exception is raised.
+
+ This should be used via the 'with' statement, e.g.::
+
+ with apt_pkg.SystemLock():
+ ... # Do your stuff here.
+ ... # Now it's unlocked again
+
+ Once the block is left, the lock is released automatically. The object
+ can be used multiple times::
+
+ lock = apt_pkg.SystemLock()
+ with lock:
+ ...
+ with lock:
+ ...
+
+.. class:: FileLock(filename: str)
+
+ Context manager for locking using a file. The lock is established
+ as soon as the method __enter__() is called. It is released when
+ __exit__() is called. If the lock can not be acquired or can not be
+ released, an exception is raised.
+
+ This should be used via the 'with' statement, e.g.::
+
+ with apt_pkg.FileLock(filename):
+ ...
+
+ Once the block is left, the lock is released automatically. The object
+ can be used multiple times::
+
+ lock = apt_pkg.FileLock(filename)
+ with lock:
+ ...
+ with lock:
+ ...
+
+For Python versions prior to 2.5, similar functionality is provided by the
+following three functions:
+
+.. function:: get_lock(filename, errors=False) -> int
+
+ Create an empty file at the path specified by the parameter *filename* and
+ lock it. If this fails and *errors* is **True**, the function raises an
+ error. If *errors* is **False**, the function returns -1.
+
+ The lock can be acquired multiple times within the same process, and can be
+ released by calling :func:`os.close` on the return value which is the file
+ descriptor of the created file.
+
+.. function:: pkgsystem_lock()
+
+ Lock the global pkgsystem. The lock should be released by calling
+ :func:`pkgsystem_unlock` again. If this function is called n-times, the
+ :func:`pkgsystem_unlock` function must be called n-times as well to release
+ all acquired locks.
+
+.. function:: pkgsystem_unlock()
+
+ Unlock the global pkgsystem. This reverts the effect of
+ :func:`pkgsystem_unlock`.
+
+
+Other classes
+--------------
+.. class:: Cdrom()
+
+ Return a Cdrom object with the following methods:
+
+ .. method:: ident(progress)
+
+ Identify the cdrom. The parameter *progress* refers to an
+ :class:`apt.progress.CdromProgress()` object.
+
+ .. method:: add(progress)
+
+ Add the cdrom to the sources.list file. The parameter *progress*
+ refers to an :class:`apt.progress.CdromProgress()` object.
+
+.. class:: SourceList
+
+ This is for :file:`/etc/apt/sources.list`.
+
+ .. method:: find_index(pkgfile)
+
+ Return a :class:`IndexFile` object for the :class:`PackageFile`
+ *pkgfile*.
+
+ .. method:: read_main_list
+
+ Read the main list.
+
+ .. method:: get_indexes(acq[, all])
+
+ Add the index files to the :class:`Acquire()` object *acq*. If *all* is
+ given and ``True``, all files are fetched.
+
+ .. attribute:: list
+
+ A list of :class:`MetaIndex` objects.
+
+String functions
+----------------
+.. function:: base64_encode(string)
+
+ Encode the given string using base64, e.g::
+
+ >>> apt_pkg.base64_encode(u"A")
+ 'QQ=='
+
+.. function:: check_domain_list(host, list)
+
+ See if Host is in a ',' separated list, e.g.::
+
+ apt_pkg.check_domain_list("alioth.debian.org","debian.net,debian.org")
+
+.. function:: dequote_string(string)
+
+ Dequote the string specified by the parameter *string*, e.g.::
+
+ >>> apt_pkg.dequote_string("%61%70%74%20is%20cool")
+ 'apt is cool'
+
+.. function:: quote_string(string, repl)
+
+ For every character listed in the string *repl*, replace all occurences in
+ the string *string* with the correct HTTP encoded value:
+
+ >>> apt_pkg.quote_string("apt is cool","apt")
+ '%61%70%74%20is%20cool'
+
+.. function:: size_to_str(size)
+
+ Return a string presenting the human-readable version of the integer
+ *size*. When calculating the units (k,M,G,etc.) the size is divided by the
+ factor 1000.
+
+ Example::
+
+ >>> apt_pkg.size_to_str(10000)
+ '10.0k'
+
+.. function:: string_to_bool(input)
+
+ Parse the string *input* and return one of **-1**, **0**, **1**.
+
+ .. table:: Return values
+
+ ===== =============================================
+ Value Meaning
+ ===== =============================================
+ -1 The string *input* is not recognized.
+ 0 The string *input* evaluates to **False**.
+ +1 The string *input* evaluates to **True**.
+ ===== =============================================
+
+ Example::
+
+ >>> apt_pkg.string_to_bool("yes")
+ 1
+ >>> apt_pkg.string_to_bool("no")
+ 0
+ >>> apt_pkg.string_to_bool("not-recognized")
+ -1
+
+.. function:: str_to_time(rfc_time)
+
+ Convert the :rfc:`1123` conforming string *rfc_time* to the unix time, and
+ return the integer. This is the opposite of :func:`TimeRFC1123`.
+
+ Example::
+
+ >> apt_pkg.str_to_time('Thu, 01 Jan 1970 00:00:00 GMT')
+ 0
+
+.. function:: time_rfc1123(seconds)
+
+ Format the unix time specified by the integer *seconds*, according to the
+ requirements of :rfc:`1123`.
+
+ Example::
+
+ >>> apt_pkg.time_rfc1123(0)
+ 'Thu, 01 Jan 1970 00:00:00 GMT'
+
+
+.. function:: time_to_str(seconds)
+
+ Format a given duration in a human-readable manner. The parameter *seconds*
+ refers to a number of seconds, given as an integer. The return value is a
+ string with a unit like 's' for seconds.
+
+ Example::
+
+ >>> apt_pkg.time_to_str(3601)
+ '1h0min1s'
+
+.. function:: upstream_version(version)
+
+ Return the string *version*, eliminating everything following the last
+ '-'. Thus, this should be equivalent to ``version.rsplit('-', 1)[0]``.
+
+.. function:: uri_to_filename(uri)
+
+ Take a string *uri* as parameter and return a filename which can be used to
+ store the file, based on the URI.
+
+ Example::
+
+ >>> apt_pkg.uri_to_filename('http://debian.org/index.html')
+ 'debian.org_index.html'
+
+
+.. function:: version_compare(a, b)
+
+ Compare two versions, *a* and *b*, and return an integer value which has
+ the same characteristic as the built-in :func:`cmp` function.
+
+ .. table:: Return values
+
+ ===== =============================================
+ Value Meaning
+ ===== =============================================
+ > 0 The version *a* is greater than version *b*.
+ = 0 Both versions are equal.
+ < 0 The version *a* is less than version *b*.
+ ===== =============================================
+
+
+
+
+Module Constants
+----------------
+.. _CurStates:
+
+Package States
+^^^^^^^^^^^^^^^
+.. data:: CURSTATE_CONFIG_FILES
+.. data:: CURSTATE_HALF_CONFIGURED
+.. data:: CURSTATE_HALF_INSTALLED
+.. data:: CURSTATE_INSTALLED
+.. data:: CURSTATE_NOT_INSTALLED
+.. data:: CURSTATE_UNPACKED
+
+.. _InstStates:
+
+Installed states
+^^^^^^^^^^^^^^^^
+.. data:: INSTSTATE_HOLD
+.. data:: INSTSTATE_HOLD_REINSTREQ
+.. data:: INSTSTATE_OK
+.. data:: INSTSTATE_REINSTREQ
+
+.. _Priorities:
+
+Priorities
+^^^^^^^^^^^
+.. data:: PRI_EXTRA
+.. data:: PRI_IMPORTANT
+.. data:: PRI_OPTIONAL
+.. data:: PRI_REQUIRED
+.. data:: PRI_STANDARD
+
+
+.. _SelStates:
+
+Select states
+^^^^^^^^^^^^^
+.. data:: SELSTATE_DEINSTALL
+.. data:: SELSTATE_HOLD
+.. data:: SELSTATE_INSTALL
+.. data:: SELSTATE_PURGE
+.. data:: SELSTATE_UNKNOWN
+
+
+Build information
+^^^^^^^^^^^^^^^^^
+.. data:: DATE
+
+ The date on which this extension has been compiled.
+
+.. data:: LIB_VERSION
+
+ The version of the apt_pkg library. This is **not** the version of apt,
+ nor the version of python-apt.
+
+.. data:: TIME
+
+ The time this extension has been built.
+
+.. data:: VERSION
+
+ The version of apt (not of python-apt).
diff --git a/doc/source/library/aptsources.distinfo.rst b/doc/source/library/aptsources.distinfo.rst
new file mode 100644
index 00000000..033ef483
--- /dev/null
+++ b/doc/source/library/aptsources.distinfo.rst
@@ -0,0 +1,11 @@
+:mod:`aptsources.distinfo` --- provide meta information for distro repositories
+===============================================================================
+.. note::
+
+ This part of the documentation is created automatically.
+
+
+.. automodule:: aptsources.distinfo
+ :members:
+ :undoc-members:
+
diff --git a/doc/source/library/aptsources.distro.rst b/doc/source/library/aptsources.distro.rst
new file mode 100644
index 00000000..6ebe438c
--- /dev/null
+++ b/doc/source/library/aptsources.distro.rst
@@ -0,0 +1,11 @@
+:mod:`aptsources.distro` --- Distribution abstraction of the sources.list
+===============================================================================
+.. note::
+
+ This part of the documentation is created automatically.
+
+
+.. automodule:: aptsources.distro
+ :members:
+ :undoc-members:
+
diff --git a/doc/source/library/aptsources.sourceslist.rst b/doc/source/library/aptsources.sourceslist.rst
new file mode 100644
index 00000000..79b8dd01
--- /dev/null
+++ b/doc/source/library/aptsources.sourceslist.rst
@@ -0,0 +1,11 @@
+:mod:`aptsources.sourceslist` --- Provide an abstraction of the sources.list
+============================================================================
+.. note::
+
+ This part of the documentation is created automatically.
+
+
+.. automodule:: aptsources.sourceslist
+ :members:
+ :undoc-members:
+
diff --git a/doc/source/library/index.rst b/doc/source/library/index.rst
new file mode 100644
index 00000000..f049efb8
--- /dev/null
+++ b/doc/source/library/index.rst
@@ -0,0 +1,37 @@
+Python APT Library
+==================
+Python APT's library provides access to almost every functionality supported
+by the underlying apt-pkg and apt-inst libraries. This means that it is
+possible to rewrite frontend programs like apt-cdrom in Python, and this is
+relatively easy, as can be seen in e.g. :doc:`../tutorials/apt-cdrom`.
+
+When going through the library, the first two modules are :mod:`apt_pkg` and
+:mod:`apt_inst`. These modules are more or less straight bindings to the
+apt-pkg and apt-inst libraries and the base for the rest of python-apt.
+
+Going forward, the :mod:`apt` package appears. This package is using
+:mod:`apt_pkg` and :mod`apt_inst` to provide easy to use ways to manipulate
+the cache, fetch packages, or install new packages. It also provides useful
+progress classes, for text and GTK+ interfaces. The last package is
+:mod:`aptsources`. The aptsources package provides classes and functions to
+read files like :file:`/etc/apt/sources.list` and to modify them.
+
+.. toctree::
+ :maxdepth: 1
+
+ apt_pkg
+ apt_inst
+
+ apt.cache
+ apt.cdrom
+ apt.debfile
+ apt.package
+ apt.progress.base
+ apt.progress.text
+ apt.progress.gtk2
+ apt.progress.qt4
+
+ aptsources.distinfo
+ aptsources.distro
+ aptsources.sourceslist
+