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.
pip install vmtconnect
import vmtconnect as vc
conn = vc.Connection('localhost', 'administrator', '<password>')
vms = conn.get_virtualmachines()
print([x['displayName'] for x in vms])
The user guide is a good place to start. Detailed documentation is also available here.