Python API to talk to a remote VirtualBox using VirtualBox WebService
Project description
Python module to communicate with a remote virtualbox over webservice.
Some examples:
>>> import pyremotevbox >>> host = pyremotevbox.VirtualBoxHost('10.0.2.2') >>> bm1 = host.find_vm('baremetal1') >>> bm1.get_power_status() 'PoweredOff' >>> bm1.start() >>> bm1.get_power_status() 'Running' >>> bm1.stop() >>> bm1.get_power_status() 'PoweredOff' >>> bm1.get_boot_device() 'Network' >>> bm1.set_boot_device(pyremotevbox.DEVICE_DISK) >>> bm1.get_boot_device() 'HardDisk' >>> bm1.set_boot_device(pyremotevbox.DEVICE_NETWORK) >>> bm1.get_boot_device() 'Network'
History
0.1.0 (2014-12-08)
- First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyremotevbox-0.5.0.tar.gz
(306.6 kB
view hashes)