summaryrefslogtreecommitdiff
path: root/doc/examples/tagfile.py
blob: 770e40de2e8fc302fa0dceb0118c937c7dc1f6a7 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python
import apt_pkg

Parse = apt_pkg.TagFile(open("/var/lib/dpkg/status", "r"))

while Parse.Step() == 1:
    print Parse.Section.get("Package")
    print apt_pkg.ParseDepends(Parse.Section.get("Depends", ""))