临时解压缩文件的最佳(最“Pythonic”)方法

发布于 2024-12-20 15:06:22 字数 375 浏览 0 评论 0原文

我需要临时创建一些文件的解压缩版本。我见过有人做 zcat somefile.gz > /tmp/somefile 在 bash 中,所以我在 python 中做了这个简单的函数:

from subprocess import check_call
def unzipto(zipfile, tmpfile):
    with open(tmpfile, 'wb') as tf:
        check_call(['zcat', zipfile], stdout=tf)

但是使用 zcat 和 check_call 对我来说似乎很黑客,我想知道是否有更多的“pythonic”方法来做到这一点。

感谢您的帮助

I need to temporarily create an unzipped version of some files. I've seen people do zcat somefile.gz > /tmp/somefile in bash, so I made this simple function in python:

from subprocess import check_call
def unzipto(zipfile, tmpfile):
    with open(tmpfile, 'wb') as tf:
        check_call(['zcat', zipfile], stdout=tf)

But using zcat and check_call seems hackish to me and I was wondering if there was more "pythonic" way to do this.

Thanks for your help

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

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

发布评论

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

评论(2

冷情 2024-12-27 15:06:22

gzip.open(zipfile).read() 将以单个字符串的形式提供文件的内容。

with open(tmpfile, "wb") as tmp:
    shutil.copyfileobj(gzip.open(zipfile), tmp)

会将内容放入临时文件中。

gzip.open(zipfile).read() will give you the contents of the file in a single string.

with open(tmpfile, "wb") as tmp:
    shutil.copyfileobj(gzip.open(zipfile), tmp)

will put the contents in a temporary file.

海风掠过北极光 2024-12-27 15:06:22

您是否考虑过使用 zlibgziptarfile

Have you considered using zlib or gzip or tarfile.

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