Metadata-Version: 2.1
Name: teimpy
Version: 0.0.2
Summary: Python libray for displaying images on terminal
Home-page: https://github.com/ar90n/teimpy
Author: Masahiro Wada
Author-email: argon.argon.argon@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: numpy
Requires-Dist: pillow
Requires-Dist: pysixel
Provides-Extra: develop
Requires-Dist: pytest ; extra == 'develop'
Requires-Dist: setuptools ; extra == 'develop'
Requires-Dist: autopep8 ; extra == 'develop'

# teimpy
[![PyPI version](https://badge.fury.io/py/teimpy.svg)](https://badge.fury.io/py/teimpy)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/amplify-education/serverless-domain-manager/master/LICENSE)
[![Build Status](https://travis-ci.org/ar90n/teimpy.svg?branch=master)](https://travis-ci.org/ar90n/teimpy)

Python library for displaying image on terminal.

## Installation

```bash
$ pip
```

## Example

```python
import numpy as np
from teimpy import get_drawer, Mode

R = np.array([1.0, 0, 0])
G = np.array([0, 1.0, 0])
B = np.array([0, 0, 1.0])

def _get_color(x, y):
    tmp = (y * (1.0 - x) * R + (1.0 -y ) * x * G + (1.0 - y) * (1.0 - x) * B)
    return (255 * tmp).astype(np.uint8)

tics = np.linspace(0, 1, 128)
xs, ys = np.meshgrid(tics, tics)
buffer = np.vectorize(_get_color, signature='(),()->(3)')(xs, ys)
print(get_drawer(Mode.ITERM2_INLINE_IMAGE).draw(buffer))
```
![Result of doit.py](https://github.com/ar90n/teimpy/raw/docs/doit.png)


## Feature

* Resize images to fit terminal size.
* Drawing with iterm2 inline image.
![Drawing with iterm2 inline image](https://github.com/ar90n/teimpy/raw/docs/inline_image.png)
* Drawing with Braille fonts.
![Drawing with Braille ofnts](https://github.com/ar90n/teimpy/raw/docs/braille.png)
* Drawing with half block fonts.
![Drawing with half block fonts](https://github.com/ar90n/teimpy/raw/docs/half_block.png)


## License
This software is released under the MIT License, see [LICENSE](LICENSE).


