Metadata-Version: 2.1
Name: beautiful-console
Version: 0.4
Summary: A package for print beautiful logs in console
Home-page: https://github.com/pourya90091/beautiful-console
Author: pourya90091
Author-email: pourya90091@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pourya90091/beautiful-console/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Beautiful Console

## installation :

install :
```bash
pip install beautiful-console
```

import :
```python
from beautiful_console.beautiful_console import beautiful_console
```

## defined text colors : 
>black, red, green, yellow, blue, magenta, cyan, white


## defined highlight colors : 
>black, red, green, yellow, blue, magenta, cyan, white


## defined styles :
>**bold**, _italic_, underline, underline_bold, overline, ~~strikethrough~~

<br>

## beautiful_console()
Returns beautiful text.

```python
# only the text-parameter is required, then you can use any option you need

print(beautiful_console(
    "text",
    "text_color", # color of text
    "highlight_color", # color of background
    "style", # style of text
    "blink", # blinking text <True or False>
    "text_color_degree", # intensity of text color <0 or 1>
    "highlight_color_degree" # intensity of background color <0 or 1>
))
```

>**Tip** : some things may not work on some consoles.
---
send your feedbacks to : pourya90091@gmail.com

