File: rpm-q.py

package info (click to toggle)
rpm 6.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,580 kB
  • sloc: cpp: 53,319; ansic: 13,888; sh: 2,038; python: 1,175; makefile: 35; xml: 26
file content (22 lines) | stat: -rwxr-xr-x 506 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python

# Query one or more installed packages by their names.
# A Python equivalent for `rpm -q hello`

import sys
import rpm

if len(sys.argv) == 1:
    print("rpm: no arguments given for query")
    sys.exit(1)

ts = rpm.TransactionSet()
for name in sys.argv[1:]:
    mi = ts.dbMatch("name", name)
    if not mi:
        print("package {0} is not installed".format(name))
        continue

    # Multiple packages can have the same name
    for hdr in mi:
        print(hdr[rpm.RPMTAG_NVRA])