From 8ad58480ce8a161519339b41eacefc26059bebf7 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 4 Sep 2007 16:28:25 +0200 Subject: * python/metaindex.cc: - added support for the metaIndex objects * python/sourceslist.cc: - support new "List" attribute that returns the list of metaIndex source entries --- doc/examples/metaindex.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 doc/examples/metaindex.py (limited to 'doc/examples') diff --git a/doc/examples/metaindex.py b/doc/examples/metaindex.py new file mode 100644 index 00000000..1bce0dba --- /dev/null +++ b/doc/examples/metaindex.py @@ -0,0 +1,15 @@ + +import apt_pkg + +apt_pkg.init() + +sources = apt_pkg.GetPkgSourceList() +sources.ReadMainList() + + +for metaindex in sources.List: + print metaindex + print "URI: ",metaindex.URI + print "Dist: ",metaindex.Dist + print "IndexFiles: ","\n".join([str(i) for i in metaindex.IndexFiles]) + print -- cgit v1.2.3 From 993b685dbfda4f606a701478540874da7c684c64 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 14 Sep 2007 17:07:42 +0200 Subject: * doc/examples/acquire.py - add actiongroup to example --- doc/examples/acquire.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'doc/examples') diff --git a/doc/examples/acquire.py b/doc/examples/acquire.py index a0790c98..1291dbfa 100644 --- a/doc/examples/acquire.py +++ b/doc/examples/acquire.py @@ -45,7 +45,7 @@ fetcher = apt_pkg.GetAcquire(progress) pm = apt_pkg.GetPackageManager(depcache) pm.GetArchives(fetcher,list,recs) print "%s (%s)" % (apt_pkg.SizeToStr(fetcher.FetchNeeded), fetcher.FetchNeeded) - +actiongroup = apt_pkg.GetPkgActionGroup(depcache) for pkg in cache.Packages: depcache.MarkKeep(pkg) @@ -68,7 +68,6 @@ print pm print fetcher get_file(fetcher, "ftp://ftp.debian.org/debian/dists/README", "/tmp/lala") -sys.exit(1) pm.GetArchives(fetcher,list,recs) -- cgit v1.2.3