summaryrefslogtreecommitdiff
path: root/doc/source/examples/cache-packages.py
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-01-10 18:14:11 +0100
committerJulian Andres Klode <jak@debian.org>2009-01-10 18:14:11 +0100
commit513093cd51f95a8d014cd5436d3fff8556e10ced (patch)
tree2d136e8f1824224a1af3c81b7984081b54699e6a /doc/source/examples/cache-packages.py
parent291e82879b70ed0b9f4628bebeff1fd1e047a7a3 (diff)
downloadpython-apt-513093cd51f95a8d014cd5436d3fff8556e10ced.tar.gz
* doc/: Heavily improve documentation
Complete the documentation of pkgCache, pkgDepCache, pkgCache::Package. Introduce new documentation for pkgCache::Version, pkgCache::Dependency, pkgCache::PackageFile, pkgcache::Description. There is also an example now which checks for missing dependencies.
Diffstat (limited to 'doc/source/examples/cache-packages.py')
-rw-r--r--doc/source/examples/cache-packages.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/source/examples/cache-packages.py b/doc/source/examples/cache-packages.py
new file mode 100644
index 00000000..1abe7cf2
--- /dev/null
+++ b/doc/source/examples/cache-packages.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+"""Example for packages. Print all essential and important packages"""
+
+import apt_pkg
+
+
+def main():
+ """Main."""
+ apt_pkg.InitConfig()
+ apt_pkg.InitSystem()
+ cache = apt_pkg.GetCache()
+ print "Essential packages:"
+ for pkg in cache.Packages:
+ if pkg.Essential:
+ print " ", pkg.Name
+ print "Important packages:"
+ for pkg in cache.Packages:
+ if pkg.Important:
+ print " ", pkg.Name
+
+if __name__ == "__main__":
+ main()