An extension to tarfile to allow adding files to a tarfile, without the need to write to disk first. It also allows data to be compressed as it is added to the tarfile, for large files or data that might be generated on the fly. Note that the output file object must support "seek()", hence the output must be an uncompressed tar file. Currently, only GZip is supported for compression.
Project description
Version: 1.1
Summary
This module provides an extension to the standard tarfile.TarFile class which provides the ability to add files to a TarFile that are compressed on-the-fly. It will only work on an uncompressed output tarfile, since after the data is written it will overwrite the header for the file with the correct size data.
Limitations
The object to which the tarfile is being written must support “seek()”, so this cannot work over a socket, nor presumably with a compressed tarfile. Note: re-compressing contents is not very useful.
The “close_gz_file” method will be called when calling “close” on the file stream. Note: close_gz_file() and close_file() are interchangeable.
The constructor does not support reading, use the open() class method or use the base class tarfile.TarFile constructor.
Example Usage
#!/usr/bin/env python3
import os, sys, shutil
import targzstream
# USAGE: ./foo.py TARFILE INPUT [ INPUT2 ... ]
# Eg: ./foo.py myoutput.tar *.cpp *.h
with targzstream.TarFile(sys.argv[1], mode='w') as tarball:
for fname in sys.argv[2:]:
st = os.stat(fname)
with tarball.add_gz_file(name=fname + '.gz', mtime=st.st_mtime,
uid=st.st_uid, gid=st.st_gid, mode=st.st_mode) as fout:
# Copy the data.
with open(fname, 'rb') as fin:
shutil.copyfileobj(fin, fout)
# The end.
TODO
Have add_gz_file handle the result of an os.stat. Eg:
with tarball.gz_file(name=fname + '.gz', stat=os.stat(fname)) as obj: with open(fname, 'rb') as fin: shutil.copyfileobj(fin, obj)
Wrap add_gz_file and close_gz_file as a context manager.
Done.
Allow streaming uncompressed files, too.
Done.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file targzstream-1.1.tar.gz
.
File metadata
- Download URL: targzstream-1.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1590674ae677c7e23cd3bb7f3961f9a10771474fe96635f3c02e87761b3c5b7 |
|
MD5 | 1db4f8ef76d2e2f4291c77a5b064e93f |
|
BLAKE2b-256 | 1190bfaf25c10cc779f644d421fd705d21b3bc169bcb797d3aa568a3b7eb57af |