Go to file
kjg b202172a30 [python-oca] create new repo 2023-11-16 22:29:06 +09:00
docs [python-oca] create new repo 2023-11-16 22:29:06 +09:00
oca [python-oca] create new repo 2023-11-16 22:29:06 +09:00
.travis.yml [python-oca] create new repo 2023-11-16 22:29:06 +09:00
AUTHORS [python-oca] create new repo 2023-11-16 22:29:06 +09:00
MANIFEST.in [python-oca] create new repo 2023-11-16 22:29:06 +09:00
README [python-oca] create new repo 2023-11-16 22:29:06 +09:00
README.rst [python-oca] create new repo 2023-11-16 22:29:06 +09:00
TODO [python-oca] create new repo 2023-11-16 22:29:06 +09:00
setup.py [python-oca] create new repo 2023-11-16 22:29:06 +09:00
tox-integrationtests.ini [python-oca] create new repo 2023-11-16 22:29:06 +09:00
tox.ini [python-oca] create new repo 2023-11-16 22:29:06 +09:00

README

##############################################
OCA - OpenNebula Cloud Api
##############################################

:Version: 4.10.0
:TravisCI Status:
  .. image:: https://travis-ci.org/python-oca/python-oca.svg
     :target: https://travis-ci.org/python-oca/python-oca

About
-----

Bindings for XMLRPC OpenNebula Cloud API

Documentation
-------------
See http://python-oca.github.io/python-oca/index.html and http://docs.opennebula.org/4.10/integration/system_interfaces/api.html

All `allocate` functions are implemented as static methods.

Examples
--------

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))

License
-------

OCA is under Apache Software License

Authors
-------

See AUTHORS file