import subprocess
import pandas as pd
from pretty_html_table import build_table
import imgkit
ds=[['14.06.2022 00:00', 1], ['14.06.2022 06:00', 2], ['14.06.2022 12:00', 3],
['14.06.2022 18:00', 4], ['15.06.2022 00:00', 1], ['15.06.2022 06:00', 2],
['15.06.2022 12:00', 3], ['15.06.2022 18:00', 4], ['16.06.2022 00:00', 1],
['16.06.2022 06:00', 2], ['16.06.2022 12:00', 3], ['16.06.2022 18:00', 4]]
df=pd.DataFrame(ds,columns=['Date','Volume'])
df['Date']=pd.to_datetime(df['Date'])
html_table = build_table(df, 'green_dark', font_family='Old English Text MT',
text_align='left' , width_dict=['400px','200px'], font_size='30px', padding='10px')
imgkit.from_string(html_table, "out.png")
subp = subprocess.Popen( "out.png", shell=True) # Win
subp = subprocess.Popen(["xdg-open", "out.png"]) # Lin
https://t.me/MajorDoMoRu
MajorDoMo - умный дом своими руками
У них есть форум, гитхаб, телеграм чят, все дела
Есть еще человек, который хакает умный дом
на базе яндекс-станции
https://github.com/AlexxIT
https://habr.com/ru/users/AlexxIT/posts/