Metadata-Version: 2.1
Name: vmtconnect
Version: 3.5.1
Summary: Turbonomic API Client
Home-page: https://github.com/turbonomic/vmt-connect
Author: R.A. Stern
Author-email: richard.stern@turbonomic.com
License: Apache 2.0
Description: # 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
        
        ```bash
        pip install vmtconnect
        ```
        
        ## Usage
        
        ```python
        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](https://turbonomic.github.io/vmt-connect/userguide.html) is a
        good place to start. Detailed documentation is also available [here](https://turbonomic.github.io/vmt-connect).
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development
Requires-Python: >=3.6
Description-Content-Type: text/markdown
