Metadata-Version: 2.1
Name: PyUnTarZip
Version: 0.0.1
Summary: PyUnTarZip is a simple Python tool for compressing and decompressing files in ZIP and TAR formats.
Home-page: 
Author: Claudio Torres Arbe
Author-email: claudiotarbe@gmail.com
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

## PyUnTarZip
PyUnTarZip is a simple Python tool for compressing and decompressing files in ZIP and TAR formats.
## Installation
To install PyUnTarZip, you can use pip:
```sh
pip install PyUnTarZip
```
## Usage
PyUnTarZip offers the following commands for compressing and decompressing files:
### Compressing Files
To compress a file in ZIP format, use the following command:
```sh
python PyUnTarZip compact zip <file path> <destination path>
```
To compress a file in TAR format, use the following command:
```sh
python PyUnTarZip compact tar <file path> <destination path>
```
### Decompressing Files
To decompress a file in ZIP format, use the following command:
```sh
python PyUnTarZip extract zip <file path> <destination path>
```
To decompress a file in TAR format, use the following command:
```sh
python PyUnTarZip extract tar <file path> <destination path>
```
Replace <file path> with the path of the file you want to compress or decompress, and <destination path> with the directory where you want to save the compressed or decompressed file.
## License
This project is licensed under the MIT License. See the LICENSE file for more details.
