我更喜欢使用apache-libcloud而不是openstack python API来访问 openstack 实例。
如何使用 libcloud 获取风味的 vcpu 信息?
#nc= get_openstack()
flavors = nc.list_sizes()
for flavor in flavors:
print flavor.id, flavor.name, flavor.ram, flavor.disk, flavor.bandwidth
# print flavor.vcpus # this is not supported.
它在 Openstack API 中受支持。