Example 3.23. Using getFreeMemory
# Example-23.py #!/usr/bin/env python3 import sys import libvirt conn = None try: conn = libvirt.open("qemu:///system") except libvirt.libvirtError as e: print(repr(e), file=sys.stderr) exit(1) mem = conn.getFreeMemory() print("Free memory on the node (host) is " + str(mem) + " bytes.") conn.close() exit(0)