Metadata-Version: 2.1
Name: easyzip
Version: 0.8.0
Summary: Easy zip file or directory with password
Home-page: https://github.com/hewenhan/easyzip
Author: Blind Holmes
Author-email: hewenhan@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyminizip


EASY ZIP
====

## What is it?

EASY ZIP is a simple tool to create zip archives. Whatever you zip from file or folder, it will be zipped in a single archive.
You can also create a password protected zip archive.

## How to use it?

### Create a zip archive

```

import easyzip

easyzip.zip('path/to/file/or/folder', 'path/to/zip/archive.zip', compressLevel = 9, password = 'hahahahaha')

```


