Metadata-Version: 2.1
Name: odoo-technical-analysis
Version: 0.1.8
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
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: click>=8.0.0
Requires-Dist: pylint-odoo>=8.0
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/odoo-technical-analysis) ![PyPI](https://img.shields.io/pypi/pyversions/odoo-technical-analysis)


## Installation

Install from PyPI:
```bash
pip install odoo-technical-analysis
```

## 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
```
