我正在尝试提取压缩文件夹,但不是直接使用 .extractall()
,而是想将文件提取到流中,以便我可以自己处理流。可以使用tarfile
来做到这一点吗?还是有什么建议?
您可以使用
.extractfile()
方法从 tar 文件中获取每个文件作为 python file
对象。循环遍历tarfile.TarFile()
实例以列出所有条目:
import tarfile
with tarfile.open(path) as tf:
for entry in tf: # list each entry one by one
fileobj = tf.extractfile(entry)
# fileobj is now an open file object. Use `.read()` to get the data.
# alternatively, loop over `fileobj` to read it line by line.
我在网络流式传输 tar 文件时无法extractfile
,我做了这样的事情:
from backports.lzma import LZMAFile
import tarfile
some_streamed_tar = LZMAFile(requests.get('http://some.com/some.tar.xz').content)
with tarfile.open(fileobj=some_streamed_tar) as tf:
tarfileobj.extractall(path="/tmp", members=None)
并阅读它们:
for fn in os.listdir("/tmp"):
with open(os.path.join(t, fn)) as f:
print(f.read())
蟒蛇 2.7.13