/usr/share/doc/mini-buildd/examples/python-client is in mini-buildd 1.0.33.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/usr/bin/python
# -*- coding: utf-8 -*-
from pprint import pprint
from mini_buildd.api.client_1_0 import Daemon
MBD = Daemon("localhost", "8066")
STATUS = MBD.call("status")
pprint(STATUS)
pprint(STATUS.repositories)
pprint(STATUS.chroots)
|