Metadata-Version: 2.1
Name: imshowtools
Version: 0.1.0
Summary: imshowtools contains simplified imshow functions to show multiple images and with other options
Home-page: https://github.com/saravanabalagi/imshowtools
Author: Saravanabalagi Ramachandran
Author-email: saravanabalagi@hotmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib

# imshowtools

This library that allows you to view images in Jupyter notebooks in a much simpler way.

## Installation

To install imshowtools,

```
pip install imshowtools
```

## Usage

### Single Image

To show a single image
```
from imshowtools import *
imshow(your_image)
```

### Multiple Images

To show multiple images
```
from imshowtools import *
imshow(image_1, image_2, image_3)
```

### Namespaces
If you do not want to use `imshow` directly in your app (maybe you have another function named imshow), you shall use it like

```
import imshowtools
imshowtools.imshow(your_image)
```

