Package to support full usage of RGB colors in the console
Project description
- AthenaColor -
Package Details
Details and features
A No Dependency Python package do display text styling in a console.
- Next to the full ability to use ANSI styling options, commonly used HTML color names are defined as default colors for Fore- and Background color styling
- The color option are available permitting the console can take advantage of RGB ANSI codes
- For a full list of all 140 out of the box available colors, go to the full documentation
- By using the
RGBobject, you have access to print any RGB color to the console you desire
- Uses a similar syntax to Colorama, but also allows for nested function patterns
Python Version
- Supported Python versions: 3.7, 3.8, 3.9, 3.10
- Other older versions of Python are not currently supported.
- These older versions will probably not be supported by @AndreasSas himself, but if you want to contribute to the project and make this package compatible with older versions of Python, Pull requests are always welcome.
Quick Examples
Inline styling:
from AthenaColor import Fore, Style
print(
f"""
{Style.Italic}{Fore.SlateGray}AthenaColor Example:{Style.NoForeground}
{Fore.Red}This is an of {Style.Bold}EXAMPLE{Style.NoBold} nested styling{Style.NoForeground}
{Fore.SlateGray}As you can see, the color needs to be manually returned here{Style.NoForeground}{Style.NoItalic}
"""
)
Nested Styling:
from AthenaColor import ForeNest, StyleNest
print(
StyleNest.Italic(ForeNest.SlateGray(
"AthenaColor Example:",
ForeNest.Red(
"This is an",
StyleNest.Bold("EXAMPLE"),
"of nested styling"
),
"As you can see, a reset of color doesn't need to happen as this is done automatically",
sep="\n"
))
)
Documentation
Full documentation can be found at: directiveathena.com/athenacolor-docu (redirect to Obsidian.md publish site) (Reminder, the documentation is still under heavy development)
Install
To install the package in your Python environment
pip install AthenaColor --upgrade
Links
Project files can be found at:
Disclaimer
With No Dependency, the standard library is not counted as a dependency
Made By Andreas Sas, 2022
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 Distributions
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 AthenaColor-7.0.2-py3-none-any.whl.
File metadata
- Download URL: AthenaColor-7.0.2-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4436b5516e3503150cd8aa996e2eeae97b99005d3c3490e63e4091f3dd2bbd1
|
|
| MD5 |
ce4ed42985cdd8e1e80cea2265bec671
|
|
| BLAKE2b-256 |
852b922f00b246d3fd8b964dcac1cb305376ca9cd223a00d9f49d81e4161c804
|