summaryrefslogtreecommitdiff
path: root/doc/examples/sources.py
blob: 79514621b7be448e2b943fd021ceebced5f8c53e (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python

import apt_pkg

apt_pkg.init()

sources = apt_pkg.GetPkgSrcRecords()
while sources.Lookup('hello'):
	print sources.Package, sources.Version, sources.Maintainer, sources.Section, `sources.Binaries`