duhhunjonn
duhhunjonn

Reputation: 45555

how to create a lzma file in python

how to create a lzma file in python and add files

Upvotes: 1

Views: 4417

Answers (2)

John Y
John Y

Reputation: 14559

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.

Upvotes: 6

mcandre
mcandre

Reputation: 24682

Use PyLZMA.

1st result for Google: python lzma.

Upvotes: 7

Related Questions