Hello, how can I obtain package maintainer info and package description using python-apt?
I'm using following code:
cache = apt_pkg.GetCache()
for pkg in cache.Packages:
cv = package.CurrentVer
if cv is not None:
print pkg.Name
print cv.VerStr # version
# here rest of information I want
# except maintainer and description
python-apt 0.5.4.4
--
[Krzysztof Luks]
[kluks<at>iq.pl]

