Warning, this project is not maintained anymore. If you are interested in OpenNebula python bindings see https://github.com/python-oca/python-oca
Version: | 3.0.0-a1 |
---|
Bindings for XMLRPC OpenNebula Cloud API
see http://lukaszo.github.com/python-oca/index.html and http://www.opennebula.org/documentation:rel3.0:api
All allocate functions are implemented as static methods.
Allocating new host:
client = oca.Client('user:password', 'http:12.12.12.12:2633/RPC2') new_host_id = oca.Host.allocate(client, 'host_name', 'im_xen', 'vmm_xen', 'tm_nfs') hostpool = oca.HostPool(client) hostpool.info() vm = hostpool.get_by_id(new_host_id) print vm.name, vm.str_state
OCA is under Apache Software License
Łukasz Oleś