()
| 243 | |
| 244 | |
| 245 | def main() -> None: |
| 246 | OUT_DIR.mkdir(parents=True, exist_ok=True) |
| 247 | rows = read_rows() |
| 248 | image = draw_png(rows) |
| 249 | image.save(PNG_OUT, dpi=(300, 300)) |
| 250 | image.save(PDF_OUT, "PDF", resolution=300.0) |
| 251 | write_svg(rows) |
| 252 | write_csv(rows) |
| 253 | print(PNG_OUT) |
| 254 | print(PDF_OUT) |
| 255 | print(SVG_OUT) |
| 256 | |
| 257 | |
| 258 | if __name__ == "__main__": |
no test coverage detected