ver Jan11thv2

a new Thunderbird example w.r.t. email filter
This commit is contained in:
David Chang
2024-01-11 22:43:38 +08:00
parent 27eaf2f5d5
commit 3c04872dcf
7 changed files with 265 additions and 13 deletions

View File

@@ -125,6 +125,9 @@ def load_charts(xlsx_file: Workbook, **options) -> Dict[str, Any]:
chart_set[series] = info
return chart_set
def _match_record(pattern: Dict[str, Any], item: Dict[str, Any]) -> bool:
return all(k in item and item[k]==val for k, val in pattern.items())
if __name__ == "__main__":
path1 = "../../../../../任务数据/LibreOffice Calc/Create_column_charts_using_statistics_gold_line_scatter.xlsx"
workbook1: Workbook = openpyxl.load_workbook(filename=path1)