如何在Python中创建lzma文件
如何在python中创建lzma文件并添加文件
how to create a lzma file in python and add files
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在python中创建lzma文件并添加文件
how to create a lzma file in python and add files
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用 PyLZMA。
Google 的第一个结果:
python lzma
。Use PyLZMA.
1st result for Google:
python lzma
.嗯,从 Python 3.3 开始,标准库中有一个 lzma 模块。
对于早期的 Python,PyLZMA (如 @mcandre 提到的)可能仍然是您最好的选择。
Well, as of Python 3.3, there is an lzma module in the standard library.
For earlier Pythons, PyLZMA (as mentioned by @mcandre) is probably still your best bet.