gzip
我正在尝试以格式编写我的 xml 的特定子树。以下Python
代码将常规 xml 写入文件,我不确定如何对其添加压缩
import os, time, gzip
import xml.etree.cElementTree as ET
from xml.etree.cElementTree import ElementTree
. . .
ElementTree(child).write('outputFile.xml')
我想写一个outputFile.xml.gz
可以用普通应用程序打开的文件。请记住,我是 Python 新手...