This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author proyvind
Recipients Christophe Simonis, Garen, amaury.forgeotdarc, arekm, devurandom, eric.araujo, leonov, nicdumz, nikratio, ockham-razor, pitrou, proyvind, thedjatclubrock, vstinner
Date 2010-05-25.11:20:27
SpamBayes Score 0.0054891496
Marked as misclassified No
Message-id <1274786430.47.0.309645060137.issue6715@psf.upfronthosting.co.za>
In-reply-to
Content
Ooops, I kinda should've commented on this issue here in stead, rather than in issue5689, so I'll just copy-paste it here as well:

I'm the author of the pyliblzma module, and if desired, I'd be happy to help out adapting pyliblzma for inclusion with python.
Most of it's code is based on bz2module.c, so it shouldn't be very far away from being good 'nuff.
What I see as required is:
* clean out use of C99 types etc.
* clean up the LZMAOptions class (this is the biggest difference from the bz2 module, as the filter supports a wide range of various options, everything related such as parsing, api documentation etc. was placed in it's own class, I've yet to receive any feedback on this decission or find any remote equivalents out there to draw inspiration from;)
* While most of the liblzma API has been implemented, support for multiple/alternate filters still remains to be implemented. When done it will also cause some breakage with the current pyliblzma API.

I plan on doing these things sooner or later anyways, it's pretty much just a matter of motivation and priorities standing in the way, actual interest from others would certainly have a positive effect on this. ;)

For other alternatives to the LGPL liblzma, you really don't have any, keep in mind that LZMA is "merely" the algorithm, while xz (and LZMA_alone, used for '.lzma', now obsolete, but still supported) are the actual format you want support for. The LZMA SDK does not provide any compatibility for this.
History
Date User Action Args
2010-05-25 11:20:31proyvindsetrecipients: + proyvind, amaury.forgeotdarc, arekm, pitrou, vstinner, nicdumz, eric.araujo, Christophe Simonis, nikratio, leonov, devurandom, Garen, thedjatclubrock, ockham-razor
2010-05-25 11:20:30proyvindsetmessageid: <1274786430.47.0.309645060137.issue6715@psf.upfronthosting.co.za>
2010-05-25 11:20:28proyvindlinkissue6715 messages
2010-05-25 11:20:27proyvindcreate