Metadata-Version: 2.1
Name: itadvisor-client
Version: 0.0.12
Summary: A python client for the Schneider Electric application IT Advisor.
Author-email: David Romero <dromero@dromero.dev>
Project-URL: dromero, https://www.linkedin.com/in/dromero1/
Project-URL: Repository, https://github.com/dl-romero/itadvisor_client
Project-URL: Issues, https://github.com/dl-romero/itadvisor_client/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# ITAdvisor Client
An unoffical ITAdvisor API Client.<br>
<br>
All capabilities available in the API are supported by this module.

## Supported IT Advisor Versions:
- 9.4.4

## Installation
```
pip install itadvisor-client
```

## Documentation
Example:
```
import itadvisor_client

# Mr. Robot Inspired Connection Details
ita_client = ITAdvisor(
    host = "itadvisor.evilcorp.com"
    username = "ealderson"
    password = "fS0c13tY"
)

genomes = ita_client.genome_library()
```
