oZip

A Simple Compression Solution


Keywords
compression, zip, huffman
License
GPL-3.0
Install
pip install oZip==1.0

Documentation

oZip - Simple compression solution

===

Demo

Installation

To install oZip, simply use pip:

$ pip install ozip

If for some reason pip is unavailable (Or you're on Windows), you can install by running the following commands:

$ git clone https://github.com/OzTamir/oZip
$ cd oZip
$ python setup.py install

If you have any problem with the setup process, you are welcomed to open a Issue in the project's repository.

CLI Usage

To compress a file run the following command:

$ ozip -i <Path to file>

This will create a file.ext.ozip in the same path.

To decompress a file, run the following command:

$ ozip -i <oZip File> -d

This will decompress the file in the same path.

GUI Usage

GUI demo

To use the GUI version of oZip, simply run:

$ ozip-gui

This will invoke the GUI and will allow you to use oZip just as you would from the command line.


License

This project is licensed under the GNU GPL v2.0 License. Please read the LICENSE.txt file to learn more about the allowed usage of this project.

PyPi Version

PyPI version


Read more

To read more about how the oZip format is structured and what is the current Roadmap for future updates and releases, please go to our GitHub page.