Metadata-Version: 2.1
Name: odoo-technical-analysis
Version: 0.1.5
Summary: Odoo Technical Analysis
Home-page: https://github.com/royaurelien/ota-client
Author: Aurelien ROY
Author-email: roy.aurelien@gmail.com
License: BSD 2-clause
Description-Content-Type: text/markdown
Requires-Dist: click >=8.0.0
Requires-Dist: pylint-odoo >=8.0.19
Requires-Dist: pylint ==2.15.5
Requires-Dist: odoo-analyse >=1.3.0
Requires-Dist: requests
Requires-Dist: sh >=2.0.0
Requires-Dist: rich
Requires-Dist: black
Requires-Dist: pydantic
Requires-Dist: pydantic-settings
Requires-Dist: pandas
Requires-Dist: numpy
Requires-Dist: appdirs
Requires-Dist: jinja2


# Odoo Technical Analysis

_**OTA** Command Line Tool_

![PyPI](https://img.shields.io/pypi/v/ota) ![PyPI](https://img.shields.io/pypi/pyversions/ota)


## Installation

Install from PyPI:
```bash
pip install ota
```

## Quickstart


### Analyze
`path` is the local repository you want to inspect.
```bash
ota analyze <path> --save
```

### Send report
```bash
ota send <json_file> --local

ID=$(ota send <json_file> --local)
```

### Download reports
* PDF Report :
```bash
ota download "$ID" pdf --template default --local
```
* Document :
```bash
ota download "$ID" docx --template doc --local
```
