Skip to content

turbonomic/vmt-connect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vmt-connect: Turbonomic API Connection Wrapper

vmt-connect is a user-friendly wrapper around the second generation Turbonomic API. The wrapper provides useful helper functions for handling general tasks within the API, such as searching, filtering, and error checking. This module is not intended to be a full API client implementation.

Installation

pip install vmtconnect

Usage

import vmtconnect as vc

conn = vc.Connection('localhost', 'administrator', '<password>')
vms = conn.get_virtualmachines()
print([x['displayName'] for x in vms])

Documentation

The user guide is a good place to start. Detailed documentation is also available here.