[issue37095] [Feature Request]: Add zstd support in tarfile

2021-10-26 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: -yan12125 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37095] [Feature Request]: Add zstd support in tarfile

2021-10-26 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +erlendaasland ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-08-29 Thread Ma Lin
Ma Lin added the comment: I have spent two weeks, almost complete the code, a preview: https://github.com/animalize/cpython/pull/8/files Write directly for stdlib, since there are already zstd modules on pypi. In addition, the API of zstd is simple, not as complicated as lzma. Can also use

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-08-15 Thread Ma Lin
Ma Lin added the comment: There are two zstd modules on pypi: https://pypi.org/project/zstd/ https://pypi.org/project/zstandard/ The first one is too simple. The second one is powerful, but has too many APIs: ZstdCompressorIterator ZstdDecompressorIterator

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-07-23 Thread Jeffrey Kintscher
Change by Jeffrey Kintscher : -- nosy: +Jeffrey.Kintscher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-07-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The tarfile module supports arbitrary compressions by using the stream mode. You only need to use a third-party library which provides zstd support. Recent versions of the tar utility has options to explicit support of new compressions: --lzip, --lzma,

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-07-22 Thread Wicher Minnaard
Change by Wicher Minnaard : -- nosy: +wicher ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-07-14 Thread Ma Lin
Ma Lin added the comment: > Add zstd support in tarfile This requires the stdlib to contain a Zstandard module. You can ask in the Idea forum: https://discuss.python.org/c/ideas -- nosy: +malin ___ Python tracker

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-07-13 Thread Łukasz Langa
Change by Łukasz Langa : -- versions: +Python 3.10 -Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-07-12 Thread Anatol Pomozov
Anatol Pomozov added the comment: Is there any progress with this feature development? Arch Linux uses Python tar library for its toolset. Arch devs are looking to add ZSTD support to the toolset but it needs this feature to be implemented. -- nosy: +Anatol Pomozov

[issue37095] [Feature Request]: Add zstd support in tarfile

2020-04-03 Thread Ugra Dániel
Change by Ugra Dániel : -- nosy: +daniel.ugra ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37095] [Feature Request]: Add zstd support in tarfile

2019-11-24 Thread Chih-Hsuan Yen
Change by Chih-Hsuan Yen : -- nosy: +yan12125 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37095] [Feature Request]: Add zstd support in tarfile

2019-11-24 Thread lilydjwg
Change by lilydjwg : -- nosy: +lilydjwg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37095] [Feature Request]: Add zstd support in tarfile

2019-11-12 Thread Jerrod Frost
Jerrod Frost added the comment: Curious about this as well. -- nosy: +Jerrod Frost ___ Python tracker ___ ___ Python-bugs-list

[issue37095] [Feature Request]: Add zstd support in tarfile

2019-05-29 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +lars.gustaebel, serhiy.storchaka versions: +Python 3.8, Python 3.9 -Python 3.7 ___ Python tracker ___

[issue37095] [Feature Request]: Add zstd support in tarfile

2019-05-29 Thread Evan Greenup
New submission from Evan Greenup : Zstandard is getting more and more popular. It could be awesome if tarfile support this compression format for .tar.zst file. -- components: Library (Lib) messages: 343945 nosy: evan0greenup priority: normal severity: normal status: open title: