Metadata-Version: 2.4
Name: mlshortcuts
Version: 0.1.1
Author: Ganesh Gaikwad
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: description
Dynamic: description-content-type


# mlshortcuts

A helper module to help in developing machine learning models. 


## Installation

Install module with pip

```bash
  pip install mlshortcuts
```
    
## Features

- Extract and Compress .zip files

## Entry Point

Use mlshortcuts in the cmd to get the information of the library.

```bash
  > mlshortcuts
    
    This function is the guide to use this library.

    Functions:
    * Zip.extract_zip(): Lets you extract .zip files into any specified path.
    * Zip.view_zip(): Lets you view the contents of the .zip files.
    * Zip.create_zip_from_dir: Lets you create zip files by directory.
    * Zip.create_zip_from_list: Lets you create zip files by list.
```


## Usage/Examples

```python
import mlshortcuts as mls

mls.Zip.extract_zip('archive.zip', 'myfolder')
```

