-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0.7: mainly documentation adjustments
- Loading branch information
Showing
11 changed files
with
148 additions
and
531 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
VIX | ||
=== | ||
|
||
VIX is a object oriented python wrapper for `VMware's VIX API`_. | ||
|
||
Installing | ||
---------- | ||
|
||
Install and update using `pip`_: | ||
|
||
.. code-block:: text | ||
pip install -U vix | ||
Quick Example | ||
------------- | ||
|
||
.. code-block:: python | ||
from vix import VixHost, VixError | ||
host = VixHost() | ||
try: | ||
vm = host.open_vm(r'/home/root/VirtualMachines/Debian/Debian.vmx') | ||
snapshot = vm.create_snapshot( | ||
'Testing VIX', | ||
'Well, this is great!', | ||
include_memory=True | ||
) | ||
print('Snapshot created!') | ||
except VixError as ex: | ||
print("Something went wrong :( {0}".format(ex)) | ||
Features | ||
-------- | ||
|
||
The full VIX API was wrapped, some of the supported operations include: | ||
|
||
- Power on & power off VMs. | ||
- Manage snapshots (with or without memory) | ||
- Cloning (linked or full) | ||
- Script & Command execution on guests | ||
|
||
- Executing scripts and processes | ||
- Manage directories, files & processes | ||
|
||
- Control VMs environment | ||
- Manage shared folders | ||
- Create screenshot of guest VMs | ||
|
||
.. _VMware's VIX API: https://www.vmware.com/support/developer/vix-api/ | ||
.. _pip: https://pip.pypa.io/en/stable/quickstart |
Oops, something went wrong.