mrqart.web_report¶
Functions
|
Append entries as JSONL to log_path. |
|
Render a static HTML from JSONL log. |
- mrqart.web_report.append_entries(entries, log_path)[source]¶
Append entries as JSONL to log_path.
- Parameters:
entries (Iterable[Dict[str, Any]])
log_path (Path)
- Return type:
None
- mrqart.web_report.render_html(log_path, html_out, title='MRQART QA — Feed', max_rows=2000, template_path=None)[source]¶
Render a static HTML from JSONL log. If Jinja2 is available and a template is found, render with Jinja. Otherwise fall back to the built-in renderer (same look as before).
- Parameters:
log_path (Path)
html_out (Path)
title (str)
max_rows (int)
template_path (Path | None)
- Return type:
None