创建 html 格式的报告
我有一个在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从此处选择 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.