Metadata-Version: 2.1
Name: licorice-font
Version: 0.0.3
Summary: licorice - vibrant string color additions.
Home-page: UNKNOWN
Author: Michael E. Vinyard - Harvard University - Massachussetts General Hospital - Broad Institute of MIT and Harvard
Author-email: mvinyard@broadinstitute.org
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >3.6.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy (>=1.17.0)

# ![licorice](/docs/images/licorice.svg)
A python utility library for creating and printing more elegant strings.

[![PyPI pyversions](https://img.shields.io/pypi/pyversions/licorice.svg)](https://pypi.python.org/pypi/licorice_font/)
[![PyPI version](https://badge.fury.io/py/licorice.svg)](https://badge.fury.io/py/licorice_font)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Documentation Status](https://readthedocs.org/projects/licorice/badge/?version=latest)](https://licorice.readthedocs.io/en/latest/?badge=latest)

## Example use-cases

#### Font-formatting using `licorice.font_format()`
```python
import licorice_font

message = licorice_font.font_format("This is licorice", ['BOLD', 'CYAN'])
print(message)
```
<img width="181" alt="Screen Shot 2021-11-28 at 12 26 41 AM" src="https://user-images.githubusercontent.com/47393421/143730814-7218d14c-8531-4df5-a63a-c61f92edcc9c.png">

#### Font-underlining using `licorice.underline()`
```python
licorice_font.underline("This is licorice:", ['BOLD', 'PURPLE'])
```
<img width="192" alt="Screen Shot 2021-11-28 at 12 31 35 AM" src="https://user-images.githubusercontent.com/47393421/143730941-d53e389d-54e2-404e-a247-1676be30f9d1.png">


## Installation
```python
pip install licorice_font
```


