No description
Find a file
2022-05-02 18:03:14 +01:00
src Small formatting changes 2022-05-02 18:03:14 +01:00
.gitmodules Move zlib to src/ 2017-05-01 22:56:42 +01:00
readme.markdown Link zlib statically on Windows to fix issues with it. 2017-05-01 22:23:36 +01:00
untar.nimble Initial commit. 2017-02-08 23:02:48 +01:00

untar

This library does one and only one thing very well, it decompresses and extracts .tar.gz archives.

Installation

nimble install untar

Usage

import os
import untar

var file = newTarFile("file.tar.gz")
file.extract(getCurrentDir() / "extracted-files")

Dependencies

This package aims to have as few dependencies as possible. The zlib library is the only dependency.

On Windows the zlib library is linked statically!

License

MIT