A Python library for creating and applying full-color, linear, and circular gradients to text with easy color management.
Project description
rich-style
A Python library for creating and applying full-color, linear, and circular gradients to text with easy color management. Includes utilities for ANSI styling, colored prints, and more.
Features
- Text Styling: Bold, italic, underline, strikethrough, bullet lists, and more.
- Color Management: Use named presets, custom RGB, gradients, and HSL/HTML color parsing.
- Gradients: Linear and circular gradients for text.
- ANSI Support: Automatically detects terminal support for ANSI escape codes.
- Utility Prints: Info, warning, error, success, timed, and mutable prints with color.
- Composable: Combine styles and colors easily.
Installation
pip install richstyle
Usage
Basic Styling
from richstyle import bold, italic, underline, strikethrough
print(bold("Bold text"))
print(italic("Italic text"))
print(underline("Underlined text"))
print(strikethrough("Strikethrough text"))
Bullet Lists
from richstyle import bullet_list, bold
tasks = [
"Complete report",
"Send email to client",
"Buy groceries"
]
print(bold("Task List:"))
print(bullet_list(*tasks))
Colors and Gradients
from richstyle import presets, foreground, background
print(foreground(presets.red, "Red text"))
print(background(presets.blue, "Text with blue background"))
Colors and Gradients
from richstyle import presets, foreground, background
print(foreground(presets.red, "Red text"))
print(background(presets.blue, "Text with blue background"))
Rainbow Text
from richstyle import rainbow_text
print(rainbow_text("This is a rainbow text message."))
Utility Prints
from richstyle import info, success, warn, error, timed_print
info("This is an informational message.")
success("This is a success message.")
warn("This is a warning message.")
error("This is an error message.")
timed_print("This is a timed print message.")
Mutable Print
from richstyle import mutable_print
from time import sleep
mutable = mutable_print("Loading")
sleep(1)
mutable("Still loading...")
sleep(1)
mutable("Done!\n")
[!WARNING]
You can only use a mutable print when it's the last print.
Examples
See the examples/ directory for more usage examples.
Credits
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rich_style-1.0.tar.gz.
File metadata
- Download URL: rich_style-1.0.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
174d472f75f76f4162f94d38a2cac2796dc0b3d485b114d3a12eb90f2853bd0b
|
|
| MD5 |
5bc3cb75de2c5e80560c4415a464f44b
|
|
| BLAKE2b-256 |
f2800c1b6979e79a7bfe513da2b3cbfbf29933317e93593c1a6e378f8908e0ea
|
File details
Details for the file rich_style-1.0-py3-none-any.whl.
File metadata
- Download URL: rich_style-1.0-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3be8a274b1a5a8599000939b57c41d4b8af0cd372ff4be59f9d5b89f45b6841
|
|
| MD5 |
ec7c61111c3b9e9469ff0fd0e54b7cf6
|
|
| BLAKE2b-256 |
e20ae798163713681fdbf1c69676ede2c2d90bf67cee7fd17e56663a007e527f
|