ascoderu / xtarfile

Wrapper around tarfile to add support for more compression formats

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

xtarfile

Overview

Wrapper around tarfile to add support for more compression formats.

Usage

First, install the library with the tarfile compression formats you wish to support. The example below shows an install for zstandard tarfile support.

pip install xtarfile[zstd]

You can now use the xtarfile module in the same way as the standard library tarfile module:

import xtarfile as tarfile

with tarfile.open('some-archive', 'w:zstd') as archive:
    archive.add('a-file.txt')

with tarfile.open('some-archive', 'r:zstd') as archive:
    archive.extractall()

Alternatively, detecting the correct compression module based on the file extensions is also supported:

import xtarfile as tarfile

with tarfile.open('some-archive.tar.zstd', 'w') as archive:
    archive.add('a-file.txt')

with tarfile.open('some-archive.tar.zstd', 'r') as archive:
    archive.extractall()

Development

Install the project's dependencies with pip install .[zstd].

Run the tests via python3 setup.py test.

About

Wrapper around tarfile to add support for more compression formats

License:Apache License 2.0


Languages

Language:Python 100.0%