Metadata-Version: 2.1
Name: extprint
Version: 0.0.5
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 line by line**


## 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, seperator="----->", start_index=0, color="GREEN", bold=True)

printcolored("HELLO", color="BLUE", bold=True)
```
```
0 -----> 1
1 -----> 2
2 -----> 3
3 -----> 4
4 -----> 5
5 -----> 6
6 -----> 7
7 -----> 8
8 -----> 9
9 -----> 0
HELLO
```


## Available colors-options

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

```

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

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




