V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
U87
V2EX  ›  Python

Python zipfile 性能问题

  •  
  •   U87 · Feb 7, 2021 · 2710 views
    This topic created in 1911 days ago, the information mentioned may be changed or developed.

    众所周知 zipfile 是 python 解压和压缩文件的库, 我这边用 zipfile 的 extractall 方法解压一个大文件 600 多 M 的压缩包,竟然要半个小时。。。想问下是 zipfile 本身性能问题吗,有什么快速方法吗

    4 replies    2021-02-08 14:25:26 +08:00
    laminux29
        1
    laminux29  
       Feb 7, 2021
    zipfile 是 Python 实现的,不是 C 库,这是性能差的关键。

    如果需要压缩的文件数量很多,建议用命令行或 cpp 来进行压缩或解压缩。
    noqwerty
        2
    noqwerty  
       Feb 7, 2021
    subprocess.check_output() 用 7zip 之类的软件去做解压吧,花很多时间在这上面真的不值得。zipfile 自己文档里都写了 Decryption is extremely slow as it is implemented in native Python rather than C.
    U87
        3
    U87  
    OP
       Feb 8, 2021
    @noqwerty 好的,谢谢,zipfile 文档里那段话我也看到了,但同事拿相同的包用 java 解压,几十秒。。
    U87
        4
    U87  
    OP
       Feb 8, 2021
    @laminux29 用命令行了,一开始也想过,但觉得没有用 zipfile 优雅
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2376 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 31ms · UTC 15:35 · PVG 23:35 · LAX 08:35 · JFK 11:35
    ♥ Do have faith in what you're doing.