|
from io import StringIO |
|
from pathlib import Path |
|
|
|
from bs4 import BeautifulSoup |
|
from rich.console import Console |
|
from rich.syntax import Syntax |
|
|
|
from src.display.css_html_js import style_content |
|
from src.envs import NUM_LINES_VISUALIZE |
|
from src.logging import log_file |
|
|
|
proj_dir = Path(__name__).parent |
|
|
|
|
|
def log_file_to_html_string(): |
|
with open(log_file, "rt") as f: |
|
|
|
|
|
lines = f.readlines() |
|
lines = lines[-NUM_LINES_VISUALIZE:] |
|
|
|
|
|
output = "".join(reversed(lines)) |
|
syntax = Syntax(output, "python", theme="monokai", word_wrap=True) |
|
|
|
console = Console(record=True, width=150, style="#272822", file=StringIO()) |
|
console.print(syntax) |
|
html_content = console.export_html(inline_styles=True) |
|
|
|
|
|
soup = BeautifulSoup(html_content, 'lxml') |
|
|
|
|
|
pre_tag = soup.pre |
|
pre_tag['class'] = 'scrollable' |
|
del pre_tag['style'] |
|
|
|
|
|
style_tag = soup.style |
|
style_tag.append(style_content) |
|
|
|
return soup.prettify() |
|
|