#!/usr/bin/python2 """ simple display to show results of disk.py """ import disk #output if __name__ == "__main__": diskmoninstance = disk.diskmon() for partition in diskmoninstance.partitions: print "device:\t\t" + str(partition["device"]) + \ "\nuuid:\t\t" + str(partition["uuid"]) if partition.has_key("mountpoint"): print "mountpoint:\t" + str(partition["mountpoint"]) + \ "\nfilesystem:\t" + str(partition["filesystem"]) + \ "\nblocksize:\t" + str(partition["blocksize"]) + \ "\ntotal blocks:\t" + str(partition["total blocks"]) + \ "\nfree blocks:\t" + str(partition["free blocks"]) + "\n" else: print "\n"