Metadata-Version: 2.1
Name: py-acli
Version: 0.1.1
Summary: A python wrapper around the Appfire Command Line Interface (ACLI)
License: Proprietary
Author: Jean-Luc Thirion
Author-email: jean-luc.thirion@appfire.com
Requires-Python: >=3.11,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: lxml (>=4.9.3,<5.0.0)
Requires-Dist: pandas (>=2.1.3,<3.0.0)
Description-Content-Type: text/markdown

Library has been developped against python 3.11

## Installation

```bash
pip install py-acli
```

Usage:

```python
import acli.clients.cli as cli
from acli.executors import executor

if __name__ == "__main__":
    # Setup
    client = cli.CliClient(executor=executor("/path/to/acli"))

    # Get Board
    result = client.execute(cli.GetClientInfo())
    print(result)
```

