Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在尝试在 python 中编写一个解析器,它读取 nessus 报告并生成 xlsx 文件。
有没有关于 xlsx 内部工作原理的详细描述?我很难通过查看 xml 文件来找出答案,我在其中指定了哪种样式应用于哪个工作表上的哪个单元格。
您可以在ECMA 站点上找到 OfficeOpenXML 标准的完整详细信息,但为什么不使用现有的 Python 库之一(例如 Eric Gazoni 的openpyxl)来实际生成 xlsx 文件,而不是自己构建呢?