summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/depcache.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/examples/depcache.py b/doc/examples/depcache.py
index a5ecc240..76487b1d 100644
--- a/doc/examples/depcache.py
+++ b/doc/examples/depcache.py
@@ -2,15 +2,23 @@
# example how to deal with the depcache
import apt_pkg
+import sys
+
+def progress(percent, data):
+ print "%s %s" % (data, percent)
+
# init
apt_pkg.init()
-cache = apt_pkg.GetCache()
+cache = apt_pkg.GetCache(progress,None)
print "Available packages: %s " % cache.PackageCount
+sys.exit()
+
iter = cache["base-config"]
print "example package iter: %s" % iter
+
# get depcache
depcache = apt_pkg.GetDepCache(cache)
depcache.ReadPinFile()