New submission from Michał Górny <mgo...@gentoo.org>:

Currently, the tarfile module only supports adding files if their size is known 
prior to adding.  However, I think it'd be helpful to be able to store large 
dynamically generated streams straight into the (uncompressed) .tar file 
without being able to precalculate the final size and without having to use a 
temporary file.

I'm not really sure how the API should look like (i.e. whether it should be a 
new method or extension of addfile()) but the mechanism would be rather simple 
-- write TarInfo with size of 0, write data until end of stream, write padding 
appropriately to written data, seek back and update TarInfo.

Of course, the use of this API would have to be restricted to cases when 
underlying file supports seeking back and random writes, i.e. not stream, not 
compressed.

----------
components: Library (Lib)
messages: 329818
nosy: mgorny
priority: normal
severity: normal
status: open
title: [RFE] tarfile: support adding file objects without prior known size
type: enhancement
versions: Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue35227>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to