Version: | 5.20.0 |
---|---|
TravisCI Status: |
Bindings for XMLRPC OpenNebula Cloud API
See http://python-oca.github.io/python-oca/index.html and https://docs.opennebula.org/5.2/integration/system_interfaces/api.html
All allocate functions are implemented as static methods.
Show all running virtual machines:
client = oca.Client('user:password', 'http://12.12.12.12:2633/RPC2') vm_pool = oca.VirtualMachinePool(client) vm_pool.info() for vm in vm_pool: ip_list = ', '.join(v.ip for v in vm.template.nics) print("{} {} {} (memory: {} MB)".format(vm.name, ip_list, vm.str_state, vm.template.memory))
OCA is under Apache Software License
See AUTHORS file