mirror of
https://github.com/dom96/untar
synced 2026-01-15 00:31:43 +00:00
No description
| src | ||
| .gitmodules | ||
| readme.markdown | ||
| untar.nimble | ||
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