Metadata-Version: 1.0
Name: oca
Version: 0.1.3
Summary: Bindings for XMLRPC OpenNebula Cloud API
Home-page: https://github.com/lukaszo/python-oca
Author: Łukasz Oleś
Author-email: lukaszoles@gmail.com
License: Apache License 2.0
Description: ##############################################
        OCA - OpenNebula Cloud Api
        ##############################################
        
        :Version: 0.1
        
        About
        -----
        
        Bindings for XMLRPC OpenNebula Cloud API
        
        Documentation
        -------------
        see http://www.opennebula.org/documentation:rel2.0:api
        
        All `allocate` functions are implemented as static methods.
        
        Examples
        --------
        
        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()
            for i in hostpool:
                if i.id == new_host_id:
                    vm = i
                    break
            print vm.name, vm.str_state
        
        License
        -------
        
        OCA is under Apache Software License
        
        Authors
        -------
        
        Łukasz Oleś
        
        
        
        0.1 (2010-12-08)
        ================
        
        Initial release
        
        
Keywords: opennebula cloud xmlrpc
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
