创建 html 格式的报告

发布于 2024-10-14 12:16:03 字数 185 浏览 0 评论 0原文

我有一个在 Linux 上运行的 Python 2.6 应用程序,它创建了一个 CSV 文件。在应用程序中,我需要创建一个 HTML 报告,作为单个 HTML 文件,它显示 CSV 中的数据(可能作为表格),并突出显示值满足特定条件的字段。图表类型功能如果有的话那就太好了。

最好的方法是什么?

请不要使用 GPL 的东西。

I have a Python 2.6 app running on Linux that creates a CSV file. From the app, I need to create an HTML report, as a single HTML file, that presents the data from the CSV (probably as a table) and also highlights fields where the values meet certain criteria. Charting type functionality would be a nice to have.

What's the best way to do this?

No GPL stuff please.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不忘初心 2024-10-21 12:16:03

此处选择 Python csv 库。现在您已将数据映射到 Python 数据结构,您可以对其进行迭代并创建 html。我会使用 Jinja2 模板引擎,该引擎有很好的文档记录。通过在表中相应的 tr/td 元素上设置某些 css 类可以突出显示行/单元格。

Choose a Python csv library from here. Now that you have the data mapped to Python data structures you can iterate on it and create the html. I would use the Jinja2 templating engine which is nicely documented. Highlighting rows/cells would work by setting certain css classes on the respective tr/td elements in the table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文