Metadata-Version: 2.4
Name: color_ur_text
Version: 0.1.3.1
Summary: A module for printing colored text to terminal/console in Python, Now with more methods and colors like displayiing animations. refer to the README.md
Author-email: Basit Ahmad Ganie <basitahmed1412@gmail.com>
License: MIT
Project-URL: github page, https://github.com/basitganie/colored_text
Keywords: text-color,ANSI,terminal,python-color
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: license-file

#color_ur_text
## A python library that provides various methods to stylize you terminal based apps or programs, like terminal coloring, GUI features like spinner, progress bar and animations like rainbow wave, typewriter etc anf many more feaures. 
## Note: Some terminal might not support the various color codes

# Installation
## You can install the module via pip using `pip install color_ur_text`

# Usage
```python
from color_ur_text import ColoredText as ct

ct.print_colored("Hello, World", ct.RED) prints Hello, World in RED
print(ct.rgb("Hello, World!", 255, 255, 0)) #prints Hello, World! in Yellow
print(ct.table("Hello")) #prints Hello in a box
#animations
ct.animate_text("WAVE ANIMATION", animation_type='rainbow_wave', speed=0.03, cycles=1)
#spinner
ColoredText.spinner("Loading data", duration=2.0, spinner_style='dots', color=(255, 0, 255))
```
