costguard-cli 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- costguard_cli/__init__.py +3 -0
- costguard_cli/__main__.py +5 -0
- costguard_cli/formatters/__init__.py +15 -0
- costguard_cli/formatters/html_report.py +1433 -0
- costguard_cli/formatters/json_report.py +15 -0
- costguard_cli/formatters/markdown.py +269 -0
- costguard_cli/formatters/terminal.py +342 -0
- costguard_cli/platforms.py +156 -0
- costguard_cli/py.typed +0 -0
- costguard_cli/validate.py +430 -0
- costguard_cli-1.0.0.dist-info/METADATA +133 -0
- costguard_cli-1.0.0.dist-info/RECORD +16 -0
- costguard_cli-1.0.0.dist-info/WHEEL +5 -0
- costguard_cli-1.0.0.dist-info/entry_points.txt +2 -0
- costguard_cli-1.0.0.dist-info/licenses/LICENSE +6 -0
- costguard_cli-1.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""CostGuard output formatters."""
|
|
2
|
+
|
|
3
|
+
from costguard_cli.formatters.terminal import TerminalFormatter
|
|
4
|
+
from costguard_cli.formatters.markdown import MarkdownFormatter
|
|
5
|
+
from costguard_cli.formatters.json_report import JsonFormatter
|
|
6
|
+
from costguard_cli.formatters.html_report import HtmlFormatter
|
|
7
|
+
|
|
8
|
+
FORMATTERS = {
|
|
9
|
+
"terminal": TerminalFormatter,
|
|
10
|
+
"markdown": MarkdownFormatter,
|
|
11
|
+
"json": JsonFormatter,
|
|
12
|
+
"html": HtmlFormatter,
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
__all__ = ["FORMATTERS", "TerminalFormatter", "MarkdownFormatter", "JsonFormatter", "HtmlFormatter"]
|