summaryrefslogtreecommitdiff
path: root/doc/examples
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2008-01-18 16:57:57 +0100
committerMichael Vogt <michael.vogt@ubuntu.com>2008-01-18 16:57:57 +0100
commitabfffe610b0f5256117a6af165ee182bbc60b6a5 (patch)
treebd58c4a267e6e3fb677e76d06c8a13fa3451119c /doc/examples
parent46298fbf3cb7ff1e7cae23c0f4de227979add160 (diff)
parentdbf6dd4e8d576eb8516b11e8d8861113bf4dfc52 (diff)
downloadpython-apt-abfffe610b0f5256117a6af165ee182bbc60b6a5.tar.gz
* use the new apt ListUpdate() code
* add example in doc/examples/update.py
Diffstat (limited to 'doc/examples')
-rwxr-xr-xdoc/examples/update.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/examples/update.py b/doc/examples/update.py
new file mode 100755
index 00000000..be7bb679
--- /dev/null
+++ b/doc/examples/update.py
@@ -0,0 +1,13 @@
+import apt
+import apt_pkg
+import os.path
+
+if __name__ == "__main__":
+ apt_pkg.Config.Set("APT::Update::Pre-Invoke::",
+ "touch /tmp/update-about-to-run")
+ apt_pkg.Config.Set("APT::Update::Post-Invoke::",
+ "touch /tmp/update-was-run")
+ c = apt.Cache()
+ res = c.update(apt.progress.TextFetchProgress())
+ print "res: ",res
+ assert(os.path.exists("/tmp/update-about-to-run"))