virsh 的替代品 (libvirt)
我正在使用 virsh list 来显示计算机上运行的虚拟机列表。我希望在过程中以二维数组的形式打印信息。
解决此问题的一种方法是获取输出,使用分词器并将其存储在数组中。但是是否有其他方法可以直接将其转换为数组或其他形式,以便代码更具可扩展性。 (我能想到的是在Python中使用libvirt api)
I am using virsh list to display the list of vms running on the computer. I want the information printed in the process in the form of a 2d array.
One way to go about this is to have the output, use tokenizer and store it in the array. But is there some other way where I can get directly this into the form of an array or something so that code is much more scalable. (Something that I could think of was using libvirt api in python)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确实有 libvirt Python API 绑定。
There are indeed libvirt Python API bindings.