Metadata-Version: 2.1
Name: lucidtech-las-cli
Version: 12.2.0
Summary: CLI for Lucidtech AI Services
Home-page: https://github.com/LucidtechAI/las-cli
Author: Lucidtech
Author-email: hello@lucidtech.ai
Maintainer: Magnus Aarskaug Rud
Maintainer-email: magnus@lucidtech.ai
License: Apache 2.0
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: PyYAML >=6.0.0
Requires-Dist: argcomplete >=2.0.0
Requires-Dist: dateparser >=1.1.1
Requires-Dist: filetype >=1.0.13
Requires-Dist: lucidtech-las ~=10.1

# Command Line Interface for Lucidtech AI Services

## Installation

```bash
$ pip install lucidtech-las-cli
```

## Documentation

[Link to docs](https://docs.lucidtech.ai/getting-started/dev/cli)

## Usage
All methods support the `--help` flag which will provide information on the purpose of the method, 
and what arguments could be added.

```bash
$ las documents create --help
$ las models list --help
$ las workflows update --help
```

## Contributing

### Prerequisites

```bash
$ pip install -r requirements.txt
$ pip install -r requirements.ci.txt 
```

### Run tests

```bash
$ make prism-start
$ python -m pytest
