Metadata-Version: 2.4
Name: TermART
Version: 0.1.1
Summary: A cool terminal formatting tool
Author-email: CHINmcl <namning670@gmail.com>
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyfiglet==1.0.2
Dynamic: license-file

# TermART
TermART is a Python module that simplifies the use of ANSI escape codes to style your terminal output. Add colors, effects easily with clean and readable functions. Perfect for CLI tools, TUI apps, or just making your terminal scripts look cooler!

## Function
### 1. Reset 
Reset your text colour, style to default
```python
from TermART import *

reset("Font_style")       # Reset all font style
reset("Bold")             # Reset only Bold font style
reset("Underline")        # Reset only Underline font style
reset("Italic")           # Reset only Italic font style
reset("tc")               # Reset text colour
reset("bg")               # Reset Background colour 
reset()                   # Reset every style, colour, bg colour
```
### 2. Text colours (tc & tc_rgb)
Changs your text colour :
```python
from TermART import *

#tc()
print(tc("RED") + "This is red text" + reset("tc")) #Set red colour by "RED","RED","GREEN","BLUE","YELLOW","MAGENTA","CYAN","WHITE" and "BLACK"

#tc_rgb(r,g,b)
print(tc_rgb(255,255,255) + "This is 255,255,255 colour text" + reset("tc")) #Set colour by rgb
```
### 3. Background colours (bg & bg_rgb)
Changs your text background colour :
```python
from TermART import *

#bg()
print(bg("RED") + "This is red text background" + reset("bg")) #Set red background colour by "RED","RED","GREEN","BLUE","YELLOW","MAGENTA","CYAN","WHITE" and "BLACK"

#bg_rgb(r,g,b)
print(bg_rgb(255,255,255) + "This is 255,255,255 colour text background" + reset("bg")) #Set background colour by rgb
```
### 4. Font styles (fs)
Chang your Font style:
>Options
>
>- Bold , Underline , Reversed and Italic
```python
from TermART import *

print(fs("Bold") + "Hi") # Set Bold style
# Options Bold , Underline , Reversed and Italic
```
## Update v0.1.0
### 5. Draw (draw)
```python
rom TermARTdeving import *

print(draw(text="TermART",font="3d-ascii"))
# Set text and font
'''
 _________  _______   ________  _____ ______   ________  ________  _________   
|\___   ___\\  ___ \ |\   __  \|\   _ \  _   \|\   __  \|\   __  \|\___   ___\
\|___ \  \_\ \   __/|\ \  \|\  \ \  \\\__\ \  \ \  \|\  \ \  \|\  \|___ \  \_|
     \ \  \ \ \  \_|/_\ \   _  _\ \  \\|__| \  \ \   __  \ \   _  _\   \ \  \
      \ \  \ \ \  \_|\ \ \  \\  \\ \  \    \ \  \ \  \ \  \ \  \\  \|   \ \  \
       \ \__\ \ \_______\ \__\\ _\\ \__\    \ \__\ \__\ \__\ \__\\ _\    \ \__\
        \|__|  \|_______|\|__|\|__|\|__|     \|__|\|__|\|__|\|__|\|__|    \|__|
'''
```
### 6. Draw helper (draw_help)
Show you all font
```python
from TermART import *

print(draw_help(0.5,"EXEMPLE"))
#set delay 0.5 sec and text "EXEMPLE"
```
