Metadata-Version: 2.1
Name: lwh
Version: 0.0.7
Summary: 
Author: jeffthorne
Author-email: jthorne@u.washington.edu
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: Jinja2 (>=2.11.3,<3.0.0)
Requires-Dist: typer[all] (>=0.3.2,<0.4.0)
Description-Content-Type: text/markdown

# `Lacework Helios cli`

Create a Lacework build artifact scan report.

**Usage**:

```console
$ lwh [OPTIONS]
```

**Options**:

* `--input TEXT`: path to Lacework scan results file  [required]
* `--output TEXT`: [optional] path to store html report.  [default: .]
* `--template TEXT`: [optional] path to custom html template
* `--help`: Show this message and exit.


<br/><br/>
### Installation
`pip install lwh`

### Custom Reports
If you're interested in customizing the report check out the sample template in the examples folder.
lwh cli simply renders the scan results json object to any provided template as {{ scan_result_json }}.
You also have access to a python dictionary {{ data }} as a convenience object if using jinja. You don't need to use
React or Jinja. Feel free to use your existing tool chain.<br/><br/>
From here the [lacework-razr](https://github.com/jeffthorne/lacework-razr) React components take over. But they don't have to. 
Feel free to customize or get in touch if you need any changes.

