Metadata-Version: 2.1
Name: depack
Version: 0.0.2
Summary: Universal archive file tool
Home-page: https://github.com/voidful/depack
Author: Voidful
Author-email: voidful.stack@gmail.com
License: Apache
Keywords: zip unzip tar targz gz 7zip
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: System :: Archiving :: Compression
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
Requires-Dist: patool
Requires-Dist: nlp2

# Depack

Extract files from any type of archive in command line.

## Quick Start
### install
```bash
pip install depack
```

### decompress file
```bash
depack ./test.zip
```
or
```bash
unpack ./test.zip
```
or
```bash
python -m de.pack ./test.zip
```

### compress file
```bash
depack --create test.zip ./test_folder
```

## Reference
https://github.com/wummel/patool

