Metadata-Version: 2.1
Name: extprint
Version: 0.0.4
Summary: prints stuff
Home-page: https://github.com/cccaaannn/extprint
Author: Can Kurt
Author-email: can.kurt.aa@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

## extprint

- **prints with color**

- **prints lists and their indexes**


## Install

```sh
pip install extprint
```

## Usage

```python
from extprint import printlist,printcolored
```

```python
list = [1,2,3,4,5,6,7,8,9,0]

printlist(list, color="GREEN")

printcolored("selamÄ±naleykÃ¼m",color="BLUE")
```

## Available colors-options

- **BLACK**
- **RED**
- **GREEN**
- **YELLOW**
- **BLUE**
- **VIOLET**
- **BEIGE**
- **WHITE**

- **BOLD**
- **ITALIC**


```python
printcolored("", color="?")

```

