Name | ansy JSON |
Version |
1.0.2
JSON |
| download |
home_page | https://github.com/Anas-Shakeel/ansy |
Summary | A Python package to colorize and format output in the terminal. |
upload_time | 2024-10-16 22:40:04 |
maintainer | None |
docs_url | None |
author | Anas Shakeel |
requires_python | None |
license | MIT |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Ansy 🥱
`ansy` (pronounced __ANSI__), inspired by (& successor to) `termcolor` module that is used to style and format output in the terminal.
It is a part of another module i'm currently writing, but i thought why not publish it as it's own standalone module. So, Here it is.
### ▎ Why do i say "Successor"?
While `termcolor` is an excellent module for doing what it says it does which is formatting text using ANSI codes for colored output. `ansy` does the same, plus some other things which make it far more superior to `termcolor` (_No disrespect!_)
### ▎ What can Ansy do? _(that termcolor can't)_
`ansy` has much more to offer than `termcolor`. Below is a comparision.
> #### What termcolor can do:
>
> - Can color a string using `4-bit` colors (_total 16 colors_).
> - Can format a string to print output as `bold`, `underline` etc.
>
> #### What Ansy can do:
>
> - Can color a string using `4-bit` colors. (_total 16 colors_)
> - Can color a string using `8-bit` colors. (_total 256 colors_)
> - Can color a string using `24-bit` *RGB* colors. (_total approx. 16.7 million colors_)
> - Can apply gradients to a string using `24-bit` *RGB* colors.
> - Can color a string using random colors from any color mode.
> - Can color selected parts of a string.
> - Can apply `bold`, `underline`, `italic` *(and such)* formatting on strings. (all attributes that __termcolor__ supports _plus some more_)
> - Can clean a string containing ANSI escape codes*.
> - And __more__...
### ▎ Features (in a list)
- Colorize a string using 3 color modes (`4-bit`, `8-bit`, `24-bit`)
- Colorize selective parts of a string
- Colorize a string using random colors.
- Apply Gradients to strings.
- Format a string using attributes such as `bold`, `italic`, `underline`, and __7__ more
- Strip away ANSI Codes from a string
- Access to widely used colors
- No external dependencies
- Easy to use API
- All of this under `90kb` *(and much of it is occupied by `docstrings`, `type annotations` and `hex colors`)*
### ▎ Setup & Installation
- Run `pip install ansy` in the terminal.
- You may also need to install `colorama` (_for __windows__ users_).
### ▎ From `termcolor` to `ansy`
If your code uses `termcolor` and you want to shift to `ansy`, you can safely replace the `colored` function of `termcolor` with the `colored` function of `ansy`.
```py
from ansy import colored
colored('This is ansy.', 'light_red', 'dark_grey', ['bold', 'underline'])
# Argument names for color & on_color have been changed to fgcolor & bgcolor
colored(text='this is ansy with kw-args', fgcolor='light_red', bgcolor='dark_grey', attrs=['bold'])
```
## ▎ USAGE
Using `ansy` is very easy.
> #### Coloring a string:
>
> Use the `colored` function, if you want to colorize a string.
>
> ```py
> from ansy import colored
>
> # Bold Red text on a White background
> red_white = colored('This is a string', 'red', 'white', attrs=['bold'])
> print(red_white)
> ```
>
> Leaving an argument empty uses the default `None` value which disables that formatting.
>
> ```py
> # Red text with default background and no attributes
> red = ansy.colored('This is a string', 'red')
> ```
>
> This method also takes an extra `color_mode` argument, which specifies the color mode you want to use.
>
> ```py
> # Underlined Text with 215 (brown_sandy) FG and 183 (plum) BG.
> formatted = colored('This is a string', 215, 183, ['underline'], color_mode=8)
> ```
>
> `color_mode` can only be one of below:
>
> - `4` to use 4 bit colors
>
> - `8` to use 8 bit colors
>
> - `24` to use 24 bit colors
>
> Notice i've also changed the colors to some codes. These codes belong to the `8-bit` color system and they range from `0` to `255`.
>
> You can also use color names instead of codes.
>
> ```py
> # Underlined Text with brown_sandy FG and plum BG.
> formatted = colored('This is a string', 'brown_sandy', 'plum', ['underline'], 8)
> ```
>
> You can get these colors using `get_all_colors` function, which yields a tuple containing color name and code on each iteration.
>
> ```py
> # Iterates through and prints all colors from 8-bit colorsystem
> for name, code in ansy.get_all_colors():
> print(name, code)
> ```
>
> Or you can just call `print_all_colors()`, which prints these color names, their code and the color they represent.
>
> ```py
> ansy.print_all_colors()
> # Outputs similar to below, but colored
> # ▓▓▓▓▓▓ 0: black
> # ▓▓▓▓▓▓ 1: red
> # ▓▓▓▓▓▓ 2: green
> # --snip--
> # ▓▓▓▓▓▓ 255: grey_24
> ```
>
> Modern terminals also support RGB colors which offer a much much more wider range of colors *(approx. 16.7 million colors)*. Now you have the ability to use any color you like *(provided if the terminal supports)*
>
> ```py
> # Red Italic Text on a White background
> fg = (255,100,100)
> bg = (215,215,215)
> colored('This is a string', fg, bg, ['italic'], 24)
> ```
>
> `24-bit` color system accepts **RGB** tuple as well as **Hex** color codes.
>
> ```py
> # Red Italic Text on a White background
> fg = '#FF6464'
> bg = '#D7D7D7'
> colored('This is a string', fg, bg, ['italic'], 24)
> ```
>
> You can also use `printc()` function with same arguments as of `colored()` to just print the result of `colored()` instead of returning the formatted string.
>
> ```py
> from ansy import printc
> printc('Print this string after formatting.', fgcolor='plum', attrs=['italic'], color_mode=8)
> ```
>
> Similar to `c_print()` function of `termcolor`, only easier to write.
>
> #### Coloring selective parts of a string:
>
> `colored()` formats the whole string. And so if you wanted to apply formatting to a selective part of a string you would normally have to do it like this:
>
> ```py
> # Formatting the name part and leaving the rest as is
> formatted_world = colored('World', fgcolor='purple', attrs=['bold'], color_mode=8)
> print(f"Hello, {formatted_world}!") # Output: Hello, World!
> ```
>
> What if you wanted to set a different color for `"Hello"` too?
>
> ```py
> formatted_hello = colored('Hello', fgcolor='orange', color_mode=8)
> formatted_world = colored('World', fgcolor='purple', attrs=['bold'], color_mode=8)
> print(f"{formatted_hello}, {formatted_world}") # Output: Hello, World!
> ```
>
> You could imagine where this is going, right?
>
> The solution to this problem is `colored_ansy()` function. It adds the styling defined in `style` dictionary to wherever an `ansy string` is found in the whole string.
>
> **What is an Ansy String?**
>
> An ansy string is simply a syntax that allows you to apply a specific styling or formatting to any part of the text they want.
>
> > An `Ansy String` starts with a `@` followed by the name of the style (defined by the `style` dict), and the text in backets `[text]` to which they want to apply the formatting.
> >
> > ```py
> > ansy_string = "This is an @my_style[ansy string]"
> > ```
>
> **What is Style Dict?**
>
> `Style dict` is a dictionary which defines the style(s) to apply to these ansy strings. Each style in the `style` dictionary is itself a dictionary.
>
> Purpose of this structure is so that you could define all your styles in one dictionary and then use it everywhere, instead of creating a dictioanry for each style and create a mess in your code.
>
> **Structure of Style Dict:**
>
> ```py
> style = {
> "my_style": {
> "colormode": 8,
> "fgcolor": "light_red",
> "bgcolor": 255,
> "attrs": ['bold', 'italic']
> }
> }
> ```
>
> Every key in this `style` dictionary is the name of the style that you're gonna use in the `ansy strings`.
>
> Each style must have 4 `key:value` pairs.
>
> - `color_mode`: the color mode to use (`4`, `8`, `24`)
>
> - `fgcolor`: the foreground color of the style
>
> - `bgcolor`: the background color of the style
>
> - `attrs`: the attributes to apply
>
> One thing to note here, `color_mode` decides which color mode to use and you should provide a color supported by that mode. for example, if using `4` bit color mode, provide a color that is a valid 4-bit color. If using `8` bit, provide a color from `256` color system. For color mode `24`, provide an `RGBTuple` or a `Hex` color code.
>
> Back to our problem.
>
> ```py
> from ansy import colored_ansy
> # Define styles
> style = {
> "orange": {
> "color_mode": 8,
> "fgcolor": 'orange',
> "bgcolor": None,
> "attrs": None
> },
> "purple": {
> "color_mode": 8,
> "fgcolor": 'purple',
> "bgcolor": None,
> "attrs": ['bold']
> }}
>
> formatted = colored_ansy("@orange[Hello] @purple[World]!", style)
> print(formatted) # Output: Hello, World!
> ```
>
> You must be thinking, wow! what a solution. we now have to write even more lines of code, right?
>
> Well yeah! but only if you do it manually. there is a function in called `create_style()` which makes it easier to define styles.
>
> ```py
> from ansy import colored_ansy, create_style
>
> # Create styles
> style = {
> "orange": create_style(8, fgcolor='orange'),
> "purple": create_style(8, fgcolor='purple', attrs=['bold'])
> }
>
> formatted = colored_ansy("@orange[Hello] @purple[World]!", style)
> print(formatted) # Output: Hello, World!
> ```
>
> Still more code, but it's just a one time thing! now you can use `orange` and `purple` style to format as many parts as you want.
>
> This below example hides some parts of text using `concealed` attribute.
>
> ```py
> # Reusing Styles
> style['hide'] = create_style(attrs=['concealed'])
>
> formatted = ansy.colored_ansy('Hide this @hide[..], & this @hide[++], but not this @hide[**]', style)
> print(formatted) # Output: Hide this , & this , but not this **
> ```
>
> Note that `concealed` attribute does not remove/delete the text, it only hides it visually.
>
> #### Applying Gradients:
>
> Horizontal Gradients can be applied to the foreground of a string using two **24-bit** Colors using the `colored_gradient()` function.
>
> ```py
> # Gradient (left-to-right) using Red and Blue colors
> from ansy import colored_gradient
>
> formatted = colored_gradient('This is ansy.', (255,100,100), (100,50,200))
> ```
>
> This method takes in `5` argument:
>
> - `text`: the text to apply the gradient to
>
> - `start_color`: starting foreground rgb color
>
> - `end_color`: ending foreground rgb color
>
> - `quality`: quality of the gradient
>
> > can be set to `high`, `medium` or `low`
>
> - `reverse` reverse the gradient to be (right to left) instead.
>
> Currently, this method only supports horizontal gradients, not vertical ones. but you can fake vertical gradients by introducing newline characters `\n` in your string.
>
> ```py
> text = "This is text is \ngoing to be used \nto create or fake \na vertical gradient."
> print(colored_gradient(text, '#00ffff','#b00b1e'))
> # Output:
> # This is text is
> # going to be used
> # to create or fake
> # a vertical gradient.
> ```
>
> It still is horizontal gradient but it would appear as if it's a vertical gradient. *(well, technically diagonal)*
>
> #### Random Colors:
>
> Coloring strings in your application using random colors may not be the best thing to do. but it's there if you need.
>
> ```py
> from ansy import colored_random
>
> formatted = colored_random('Random Random, Evil Phantom!')
> print(formatted)
> ```
>
> By default, this method choose a random color from `4-bit` colorsystem. but you can change the `color_mode` to `8` or `24` to use those colors.
>
> ```py
> colored_random('text'. color_mode=24)
> ```
>
> This method takes `6` arguments:
>
> - `text`: the text string
>
> - `target`: how to apply random colors
>
> - `chars`: apply a random color to each character of text
>
> - `words`: apply a random color to each word of text
>
> - `all`: apply a random color to whole text **(default)**
>
> - `color_mode`: the color mode to use
>
> - `custom_palette`: choose colors randomly only from this list of colors
>
> - `attrs`: the attributes to apply
>
> - `random_attrs`: randomize the attributes too
>
> You can also choose a `target` to apply random colors to.
>
> ```py
> colored_random('Apply random colors to each word', target='words')
> colored_random('Apply random colors to each character', target='chars')
> ```
>
> You can pass a list of colors that you like, to `custom_palette` and this method then, will only choose colors from that list.
>
> ```py
> palette = ["#69D2E7","#A7DBD8","#E0E4CC","#F38630","#FA6900"]
> colored_random('Not so random palette.', custom_palette=palette, color_mode=24)
> ```
>
> You can add colors from any color system into the `palette` list, but then make sure to set that color mode too.
>
> #### De-ansifying a string containing ANSI Codes:
>
> If you want to remove all `ANSI Escape Codes` from a string, you can use the `de_ansi` function.
>
> ```py
> from ansy import colored, de_ansi
>
> ansi_string = colored('This string contains ANSI', 'light_blue', 'dark_grey', ['italic'])
> clean_string = de_ansi(ansi_string)
>
> print([ansi_string]) # Output: ['\x1b[3m\x1b[100m\x1b[94mThis string contains ANSI\x1b[0m']
> print([clean_string]) # Output: ['This string contains ANSI']
> ```
>
> Notice how i am printing the strings, this is a neat little trick to check if a string contains `ANSI Codes` .
>
> By simply printing a string containing `ANSI`, you won't be able to see the **ANSI Escape Code** because, well, they are escaped. `print([ansi_string])` just prints the contents of a list and the `ANSI Codes` do not **"ESCAPE"** this way.
>
> Also you can write out the strings in a text file. that method works too.
>
> #### Widely Used Colors:
>
> Ansy includes `24-bit` colors to be used in your applications. These colors include:
>
> - `19` **Google's Material Colors** (with `14` different shades in each)
>
> - `140` **Web/HTML Colors**
>
> - `200` **Color Palettes** (with `5` colors in each)
>
> You can get these colors using the `colors` module within the `ansy` package.
>
> ```py
> from ansy import colors
> ```
>
> This module contains `4` functions:
>
> - `get_material_color()`: Takes in a `color` string and returns all shades of that color from **Material Colors**.
>
> - `get_palettes()`: Returns a generator iterator, which yields a list of colors on each iteration.
>
> - `get_random_palette()`: Returns a random palette from **Color Palettes**.
>
> - `get_web_colors()`: Returns a generator iterator, which yields dictionaries of colors from **Web/HTML Colors**.
>
> All **Material Colors** are tabulated in the **Useful to know** section with their names and shades.
>
> ```py
> from ansy import colors
>
> # Material colors
> materials = colors.get_material_color("red")
> print(materials)
> # Output:
> {
> '50': '#ffebee',
> '100': '#ffcdd2',
> ...,
> 'a700': '#d50000'
> }
> ```
>
> Get **Web Colors** like this:
>
> ```py
> for color in colors.get_web_colors():
> print(color)
> # Output:
> {'color': 'AliceBlue', 'hex': '#F0F8FF'}
> {'color': 'AntiqueWhite', 'hex': '#FAEBD7'}
> --snip--
> {'color': 'YellowGreen', 'hex': '#9ACD32'}
> ```
>
> And **Palettes** like this:
>
> ```py
> for palette in colors.get_palettes():
> print(palette)
> # Output:
> ['#69D2E7', '#A7DBD8', '#E0E4CC', '#F38630', '#FA6900']
> ['#FE4365', '#FC9D9A', '#F9CDAD', '#C8C8A9', '#83AF9B']
> --snip--
> ['#5CACC4', '#8CD19D', '#CEE879', '#FCB653', '#FF5254']
> ```
>
> And Get a random palette from these **Palettes** likes this:
>
> ```py
> print(colors.get_random_palette())
> # Output:
> ['#041122', '#259073', '#7FDA89', '#C8E98E', '#E6F99D']
> ```
## ▎ ANSY API
`colored(text, fgcolor=None, bgcolor=None, attrs=None, color_mode=4, no_color=None, force_color=None)`
Colorize text using `4`, `8`, or `24` bit colors. If `fgcolor`, `bgcolor`, and `attrs` all are `None`, the `text` itself is returned without any ansi codes added.
> ##### Parameters:
>
> - `text`: the text to colorize
>
> - `fgcolor`: the foreground color
>
> - `bgcolor`: the background color
>
> - `attrs`: the attributes to apply
>
> - `color_mode`: the colormode to use (defualt is `4`)
>
> ##### Returns:
>
> Formatted string.
>
> ##### Exceptions:
>
> Raises `ColorModeError` if:
>
> - `color_mode` is invalid
>
> Raises `InvalidColorError` if:
>
> - `fgcolor` is invalid
>
> - `bgcolor` is invalid
>
> Raises `AttributeError` if:
>
> - `attrs` contain an invalid attribute
`colored_ansy(text, style, no_color=None, force_color=None)`
Adds the styling defined in `style` to wherever an `ansy string` is found in the `text`.
> ##### Parameters:
>
> - `text`: the text containing the `ansy strings`
>
> - `style`: a dictionary containing the style(s).
>
> ##### Returns:
>
> Formatted string.
>
> ##### Exceptions:
>
> Raises `StyleError` if:
>
> - style name used in `ansy string` not found in `style` dict
>
> Raises `ColorModeError` if:
>
> - `color_mode` provided in style, is invalid
`colored_gradient(text, start_color=None, end_color=None, quality='medium', reverse=False)`
Apply horizontal gradient on `text`. This method uses `24-bit` color system.
> ##### Parameters:
>
> - `text`: the text to apply the gradient to
> - `start_color`: starting foreground color (`RGBTuple` or `Hex code`)
> - `end_color`: ending foreground color (`RGBTuple` or `Hex code`)
> - `quality`: quality of the gradient (`high`, `medium`, or `low`)
> - `reverse`: reverses the gradient to be (right to left) instead.
>
> ##### Returns:
>
> Formatted string.
>
> ##### Exceptions:
>
> Raises `InvalidColorError` if:
>
> - `start_color` is an invalid `24-bit` color
>
> - `end_color` is an invalid `24-bit` color
>
> Raises `AssertionError` if:
>
> - `quality` is not set to `high`, `medium`, or `low`
`colored_random(text, target='all', color_mode=4, custom_palette=None, attrs=None, random_attrs=False)`
Apply a random color to `text`. colors are chosen from a colorsystem specified by `color_mode`.
> ##### Parameters:
>
> - `text`: the text string
> - `target`: apply random colors to `chars`, `words` or `all` string.
> - `color_mode`: the colormode to use
> - `custom_palette`: choose colors only from this iterable of user-defined colors
> - `attrs`: the attributes to apply (attributes are **NOT** randomized by default)
> - `random_attrs`: randomize the attributes too.
>
> ##### Returns:
>
> Formatted string.
>
> ##### Exceptions:
>
> Raises `ValueError` if:
>
> - `target` is not set to `chars`, `words`, `all`
>
> Raises `ColorModeError` if:
>
> - `color_mode` is invalid
>
> Raises `InvalidColorError` if:
>
> - `custom_palette` contains an invalid color
>
> Raises `AttributeError` if:
>
> - `attrs` contains an invalid attribute
`colorname_to_code(color)`
Returns the `code` for the `color` name from `8-bit` color system. Returns `None` if `color` is not a valid color name.
> ##### Parameters:
>
> - `color_name`: name of a color (from`8-bit` color system)
>
> ##### Returns:
>
> Color `code` or `None`
`code_to_colorname(code)`
Returns the color name for the `code`. Returns `None` if `code` is not a valid color.
> ##### Parameters:
>
> - `code`: code of a color (from `8-bit` color system **i.e. [0-255]**)
>
> ##### Returns:
>
> Color `name` or `None`
`contains_ansi(text)`
Returns `True` if `text` contains Ansi codes, else `False`.
> ##### Parameters:
>
> - `text`: the text string to check
>
> ##### Returns:
>
> bool
`create_style(color_mode=4, fgcolor=None, bgcolor=None, attrs=None)`
Creates a style `dict` to use in `colored_ansy()` as style.
> ##### Parameters:
>
> - `color_mode`: the color mode (`4-bit`, `8-bit`, `24-bit`)
>
> - `4` means use 4-bit colors (`16` Standard colors)
>
> - `8` means use 8-bit colors (`256` colors)
>
> - `24` means use 24-bit colors (approx. `16.7 million` colors)
>
> - `fgcolor` the foreground color
>
> - `bgcolor` the foreground color
>
> - `attrs` the attributes list
>
> ##### Returns:
>
> Style `dict`
>
> ##### Exceptions:
>
> Raises `InvalidColorError` if:
>
> - `fgcolor` is not a valid color
>
> - `bgcolor` is not a valid color
>
> Raises `ColorModeError` if:
>
> - `color_mode` is invalid
>
> Raises `AttributeError` if:
>
> - `attrs` includes an invalid attribute string
`create_random_palette(color_mode, n)`
Returns a list of `n` colors from `color_mode`-bit color system.
> ##### Parameters:
>
> - `color_mode`: the colormode to use
> - `n`: number of colors to include in palette
>
> ##### Returns:
>
> `list` of colors
>
> ##### Exceptions:
>
> Raises `TypeError` if:
>
> - `n`: is not an integer
`de_ansi(text)`
Removes all `ANSI Codes` from given string.
> ##### Parameters:
>
> - `text` the text to remove ANSI codes from.
>
> ##### Returns:
>
> De-ansified string.
>
> ##### Exceptions:
>
> Raises `TypeError` if:
>
> - `text` is not a `str`
`get_all_colors(sort_by_name=False)`
Yields a `tuple` of `color_name` and it's `code`. (sorted by `code`)
> ##### Parameters:
>
> - `sort_by_name`: Sorts colors by name (default is `False` which sorts by code)
>
> ##### Returns:
>
> Generator obect.
`get_random_color(color_mode=4)`
Returns a random color from a colorsystem specified by `color_mode`.
> ##### Parameters:
>
> - `color_mode`: the color system to use to choose random color from
>
> ##### Returns:
>
> Color name `str`, or rgb `tuple`
>
> ##### Exceptions:
>
> Raises `ColorModeError` if:
>
> - `color_mode` is invalid.
`hex_to_rgb(hexcode)`
Converts `hexcode` into an `RGBTuple`. It is case-insensitive and also recognizes shorter hex codes e.g `#FFF`, `#9ca` etc.
> ##### Parameters:
>
> - `hexcode`: a hex color code string
>
> ##### Returns:
>
> RGB tuple.
`is_valid_attr(attr)`
Returns `True` if `attr` is a valid Attribute, else `False`.
> ##### Parameters:
>
> - `attr`: the attribute string
>
> ##### Returns:
>
> Boolean
`is_valid_color(color, color_mode)`
Validates the color based on `color_mode`. Returns `True` if color is valid, `False` otherwise.
> ##### Parameters:
>
> - `color`: a color from `4`, `8` or `24`-bit color system
> - `color_mode`: the color mode of `color` (can be one of `4`, `8`, `24`)
>
> ##### Returns:
>
> Boolean
`is_valid_hex(hexcode)`
Returns `True` if `hexcode` is valid, else `False`.
> ##### Parameters:
>
> - `hexcode`: the hex color code to validate
>
> ##### Returns:
>
> Boolean
`is_valid_rgb(rgb)`
Returns `True` if `rgb` is valid RGB tuple, else `False`.
> ##### Parameters:
>
> - `rgb`: the rgb tuple to validate
>
> ##### Returns:
>
> Boolean
`make_ansi(fgcolor=None, bgcolor=None, attrs=None, color_mode=4)`
Make an `Ansi Escape Sequence` from the args given. Returns the sequence without `Ansi Reset Code`. This method is similar to `colored()`, but rather than adding sequence to the text, it returns the sequence itself. Matter of fact, `colored()` also uses this method under the hood.
> ##### Parameters:
>
> - `fgcolor`: the foreground color (any color that belongs to `color_mode` color system)
> - `bgcolor`: the background color (any color that belongs to `color_mode` color system)
> - `attrs`: the attributes list
> - `color_mode`: the color mode to use
>
> ##### Returns:
>
> Ansi escape sequence `str`
>
> ##### Exceptions:
>
> Raises `InvalidColorError` if:
>
> - `fgcolor` is invalid or not from `color_mode` color system
> - `bgcolor` is invalid or not from `color_mode` color system
>
> Raises `ColorModeError` if:
>
> - `color_mode` is invalid
`make_gradient(start_color, end_color, steps=10, reverse=False)`
Make a gradient between two RGB colors `start_color` and `end_color` by linearly interpolating between these for a given number of `steps`. Returns the `list` of rgb tuples.
> ##### Parameters:
>
> - `start_color`: starting rgb color
>
> - `end_color`: ending rgb color
>
> - `steps`: steps to interpolate across (minimum `2`)
>
> - `reverse`: flip the gradient horizontally
>
> ##### Returns:
>
> `list` of rgb colors
>
> ##### Exceptions:
>
> Raises `InvalidColorError` if:
>
> - `start_color` is not a valid RGBTuple
> - `end_color` is not a valid RGBTuple
`print_all_colors()`
Print all 256 colors from `8-bit` color system with their name and code. (sorted by `codes` in asc. order)
> ##### Returns:
>
> Generator object.
`printc(text, fgcolor=None, bgcolor=None, attrs=None, color_mode=4, sep=" ", end="\n", file=None, flush=False, no_color=None, force_color=None)`
Prints whatever returns from `colored()`.
> ##### Parameters:
>
> - `text`: the text to colorize
>
> - `fgcolor`: the foreground color
>
> - `bgcolor`: the background color
>
> - `attrs`: the attributes to apply
>
> - `color_mode`: the colormode to use (defualt is `4`)
>
> - `sep`: sep arg of print function.
>
> - `end`: end arg of print function.
>
> - `file`: file arg of print function.
>
> - `flush`: flush arg of print function.
>
> ##### Exceptions:
>
> All exceptions raised by `colored()`
`rgb_to_hex(rgb, with_symbol=True)`
Converts `rgb` tuple into Hex color code.
> ##### Parameters:
>
> - `rgb`: RGB tuple to convert to hex
> - `with_symbol`: Whether to include the `#` symbol in output
>
> ##### Returns:
>
> Hex color code `str`
`search_colors(query)`
Returns a generator object which on each iteration, yields a tuple `(name, code)` of `8-bit` color that contain `query` in it's name. Returns `None` if query is empty.
> ##### Parameters:
>
> - `query`: the string to look for...
>
> ##### Returns:
>
> Generator Object.
## ▎ Exceptions in ansy:
`ColorModeError`
Raised when encountered an inappropriate color mode that is unrecognized by `ansy`
`HexError`
Raised when encountered an invalid Hex color code.
`InvalidColorError`
Raised when encountered an inappropriate color that is unrecognized by `ansy`
`RGBError`
Raised when encountered an invalid RGB tuple.
`StyleError`
Raised when encountered an invalid style for `Ansy strings`
## ▎ COLORS API
`get_material_color(color)`
Returns a `dict` of a material `color` (all of its shades). Returns `None` if `color` not found.
> ##### Parameters:
>
> - `color`: name of a color from **Material Colors**
>
> ##### Returns:
>
> `dict` containing the shades of `color`
`get_palettes()`
Returns a generator object which on iteration, yields a color palette `list`.
> ##### Returns:
>
> Generator object.
`get_random_palette()`
Returns a random color palette `list`.
> ##### Returns:
>
> `list` of colors
`get_web_colors()`
Returns a generator object which on iteration, yields a color `dict` from **Web/HTML Colors**.
> ##### Returns:
>
> Generator object.
## ▎ Useful to know
##### Standard Colors (4-Bit)
`black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `white`,
`light_grey`, `dark_grey`, `light_red`, `light_green`, `light_yellow`,
`light_blue`, `light_magenta`, `light_cyan`
##### 256 Colors (8-Bit)
Call `ansy.print_all_colors()` to see all colors and their codes.
##### Attributes
There are several attributes in `ansy` but not all are widely supported. some may not work as expected or not work at all.
| Attribute | What it does |
|:------------------ | -------------------------------------------------------------------------- |
| `bold` | bolds the text or increases intensity |
| `dark` | Darkens the text |
| `italic` | Italicizes the text (Not widely supported) |
| `blink` | Sets the blinking to less than 150 times per minute (Not widely supported) |
| `reverse` | Swaps foreground and background colors of text |
| `concealed` | Hides the text visually, but does not remove (Not widely supported) |
| `underline` | Underlines the text |
| `double-underline` | Double-Underlines the text (Disables bold mode on several terminals) |
| `overline` | Overlines the text i.e line above the text (Not widely supported) |
| `strike` | Strikes the text, as if marked for deletion (Not widely supported) |
##### Material Colors:
These below are the names of Material Colors.
`red`, `pink`, `purple`, `deeppurple`, `indigo`, `blue`, `lightblue`, `cyan`, `teal`, `green`, `lightgreen`, `lime`, `yellow`, `amber`, `orange`, `deeporange`, `brown`, `grey`, `bluegrey`.
These below are the shades of each Material color.
`50`, `100`, `200`, `300`, `400`, `500`, `600`, `700`, `800`, `900`, `a100`, `a200`, `a400`, `a700`.
### ▎ Attributions
- `_can_do_colour()` (_which checks environment variables for tty/dumb terminals_) is borrowed from `termcolor`. see full license text in `THIRD_PARTY_LICENSES` file.
- `8-bit` colors have been assigned X-Term names using **256-colors-cheatsheet** from [**ditig.com**](https://www.ditig.com/publications/256-colors-cheat-sheet) *(Updated and cleaned)*
- `colors` module uses **1400+** colors that are taken from the [Corpora](https://github.com/dariusk/corpora) by Darius Kazemi.
Thank you all, for saving me from the frustration i had to go through if........
### ▎ Compatibility and Testing
This package has been well-tested across multiple platforms, including **Windows**, **macOS**, and **Linux** _(ubuntu)_, ensuring broad compatibility.
It is tested on Python versions `3.9` upto `3.12`. it may or may not work on other versions.
---
I think i'm starting to ♥ `markdown` even more than `python`.
###### Author: ❝ Anas shakeel ❞
Raw data
{
"_id": null,
"home_page": "https://github.com/Anas-Shakeel/ansy",
"name": "ansy",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Anas Shakeel",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/d2/1c/0863e7c5e5b07365dfa032d9ee8aaf316f204ccb6763350250414d58c00e/ansy-1.0.2.tar.gz",
"platform": null,
"description": "# Ansy \ud83e\udd71\r\n\r\n`ansy` (pronounced __ANSI__), inspired by (& successor to) `termcolor` module that is used to style and format output in the terminal.\r\n\r\nIt is a part of another module i'm currently writing, but i thought why not publish it as it's own standalone module. So, Here it is.\r\n\r\n### \u258e Why do i say \"Successor\"?\r\n\r\nWhile `termcolor` is an excellent module for doing what it says it does which is formatting text using ANSI codes for colored output. `ansy` does the same, plus some other things which make it far more superior to `termcolor` (_No disrespect!_)\r\n\r\n### \u258e What can Ansy do? _(that termcolor can't)_\r\n\r\n`ansy` has much more to offer than `termcolor`. Below is a comparision.\r\n\r\n> #### What termcolor can do:\r\n> \r\n> - Can color a string using `4-bit` colors (_total 16 colors_).\r\n> - Can format a string to print output as `bold`, `underline` etc.\r\n> \r\n> #### What Ansy can do:\r\n> \r\n> - Can color a string using `4-bit` colors. (_total 16 colors_)\r\n> - Can color a string using `8-bit` colors. (_total 256 colors_)\r\n> - Can color a string using `24-bit` *RGB* colors. (_total approx. 16.7 million colors_)\r\n> - Can apply gradients to a string using `24-bit` *RGB* colors.\r\n> - Can color a string using random colors from any color mode.\r\n> - Can color selected parts of a string.\r\n> - Can apply `bold`, `underline`, `italic` *(and such)* formatting on strings. (all attributes that __termcolor__ supports _plus some more_)\r\n> - Can clean a string containing ANSI escape codes*.\r\n> - And __more__...\r\n\r\n### \u258e Features (in a list)\r\n\r\n- Colorize a string using 3 color modes (`4-bit`, `8-bit`, `24-bit`)\r\n\r\n- Colorize selective parts of a string\r\n\r\n- Colorize a string using random colors.\r\n\r\n- Apply Gradients to strings.\r\n\r\n- Format a string using attributes such as `bold`, `italic`, `underline`, and __7__ more\r\n\r\n- Strip away ANSI Codes from a string\r\n\r\n- Access to widely used colors\r\n\r\n- No external dependencies\r\n\r\n- Easy to use API\r\n\r\n- All of this under `90kb` *(and much of it is occupied by `docstrings`, `type annotations` and `hex colors`)*\r\n\r\n### \u258e Setup & Installation\r\n\r\n- Run `pip install ansy` in the terminal.\r\n- You may also need to install `colorama` (_for __windows__ users_).\r\n\r\n### \u258e From `termcolor` to `ansy`\r\n\r\nIf your code uses `termcolor` and you want to shift to `ansy`, you can safely replace the `colored` function of `termcolor` with the `colored` function of `ansy`.\r\n\r\n```py\r\nfrom ansy import colored\r\n\r\ncolored('This is ansy.', 'light_red', 'dark_grey', ['bold', 'underline'])\r\n\r\n# Argument names for color & on_color have been changed to fgcolor & bgcolor\r\ncolored(text='this is ansy with kw-args', fgcolor='light_red', bgcolor='dark_grey', attrs=['bold'])\r\n```\r\n\r\n## \u258e USAGE\r\n\r\nUsing `ansy` is very easy.\r\n\r\n> #### Coloring a string:\r\n> \r\n> Use the `colored` function, if you want to colorize a string.\r\n> \r\n> ```py\r\n> from ansy import colored\r\n> \r\n> # Bold Red text on a White background\r\n> red_white = colored('This is a string', 'red', 'white', attrs=['bold'])\r\n> print(red_white)\r\n> ```\r\n> \r\n> Leaving an argument empty uses the default `None` value which disables that formatting.\r\n> \r\n> ```py\r\n> # Red text with default background and no attributes\r\n> red = ansy.colored('This is a string', 'red')\r\n> ```\r\n> \r\n> This method also takes an extra `color_mode` argument, which specifies the color mode you want to use.\r\n> \r\n> ```py\r\n> # Underlined Text with 215 (brown_sandy) FG and 183 (plum) BG.\r\n> formatted = colored('This is a string', 215, 183, ['underline'], color_mode=8)\r\n> ```\r\n> \r\n> `color_mode` can only be one of below:\r\n> \r\n> - `4` to use 4 bit colors\r\n> \r\n> - `8` to use 8 bit colors\r\n> \r\n> - `24` to use 24 bit colors\r\n> \r\n> Notice i've also changed the colors to some codes. These codes belong to the `8-bit` color system and they range from `0` to `255`.\r\n> \r\n> You can also use color names instead of codes.\r\n> \r\n> ```py\r\n> # Underlined Text with brown_sandy FG and plum BG.\r\n> formatted = colored('This is a string', 'brown_sandy', 'plum', ['underline'], 8)\r\n> ```\r\n> \r\n> You can get these colors using `get_all_colors` function, which yields a tuple containing color name and code on each iteration.\r\n> \r\n> ```py\r\n> # Iterates through and prints all colors from 8-bit colorsystem\r\n> for name, code in ansy.get_all_colors():\r\n> print(name, code)\r\n> ```\r\n> \r\n> Or you can just call `print_all_colors()`, which prints these color names, their code and the color they represent.\r\n> \r\n> ```py\r\n> ansy.print_all_colors()\r\n> # Outputs similar to below, but colored\r\n> # \u2593\u2593\u2593\u2593\u2593\u2593 0: black\r\n> # \u2593\u2593\u2593\u2593\u2593\u2593 1: red\r\n> # \u2593\u2593\u2593\u2593\u2593\u2593 2: green\r\n> # --snip--\r\n> # \u2593\u2593\u2593\u2593\u2593\u2593 255: grey_24\r\n> ```\r\n> \r\n> Modern terminals also support RGB colors which offer a much much more wider range of colors *(approx. 16.7 million colors)*. Now you have the ability to use any color you like *(provided if the terminal supports)*\r\n> \r\n> ```py\r\n> # Red Italic Text on a White background\r\n> fg = (255,100,100)\r\n> bg = (215,215,215)\r\n> colored('This is a string', fg, bg, ['italic'], 24)\r\n> ```\r\n> \r\n> `24-bit` color system accepts **RGB** tuple as well as **Hex** color codes.\r\n> \r\n> ```py\r\n> # Red Italic Text on a White background\r\n> fg = '#FF6464'\r\n> bg = '#D7D7D7'\r\n> colored('This is a string', fg, bg, ['italic'], 24)\r\n> ```\r\n> \r\n> You can also use `printc()` function with same arguments as of `colored()` to just print the result of `colored()` instead of returning the formatted string.\r\n> \r\n> ```py\r\n> from ansy import printc\r\n> printc('Print this string after formatting.', fgcolor='plum', attrs=['italic'], color_mode=8)\r\n> ```\r\n> \r\n> Similar to `c_print()` function of `termcolor`, only easier to write.\r\n> \r\n> #### Coloring selective parts of a string:\r\n> \r\n> `colored()` formats the whole string. And so if you wanted to apply formatting to a selective part of a string you would normally have to do it like this:\r\n> \r\n> ```py\r\n> # Formatting the name part and leaving the rest as is\r\n> formatted_world = colored('World', fgcolor='purple', attrs=['bold'], color_mode=8)\r\n> print(f\"Hello, {formatted_world}!\") # Output: Hello, World!\r\n> ```\r\n> \r\n> What if you wanted to set a different color for `\"Hello\"` too?\r\n> \r\n> ```py\r\n> formatted_hello = colored('Hello', fgcolor='orange', color_mode=8)\r\n> formatted_world = colored('World', fgcolor='purple', attrs=['bold'], color_mode=8)\r\n> print(f\"{formatted_hello}, {formatted_world}\") # Output: Hello, World!\r\n> ```\r\n> \r\n> You could imagine where this is going, right?\r\n> \r\n> The solution to this problem is `colored_ansy()` function. It adds the styling defined in `style` dictionary to wherever an `ansy string` is found in the whole string.\r\n> \r\n> **What is an Ansy String?**\r\n> \r\n> An ansy string is simply a syntax that allows you to apply a specific styling or formatting to any part of the text they want.\r\n> \r\n> > An `Ansy String` starts with a `@` followed by the name of the style (defined by the `style` dict), and the text in backets `[text]` to which they want to apply the formatting.\r\n> > \r\n> > ```py\r\n> > ansy_string = \"This is an @my_style[ansy string]\"\r\n> > ```\r\n> \r\n> **What is Style Dict?**\r\n> \r\n> `Style dict` is a dictionary which defines the style(s) to apply to these ansy strings. Each style in the `style` dictionary is itself a dictionary.\r\n> \r\n> Purpose of this structure is so that you could define all your styles in one dictionary and then use it everywhere, instead of creating a dictioanry for each style and create a mess in your code.\r\n> \r\n> **Structure of Style Dict:**\r\n> \r\n> ```py\r\n> style = {\r\n> \"my_style\": {\r\n> \"colormode\": 8,\r\n> \"fgcolor\": \"light_red\",\r\n> \"bgcolor\": 255,\r\n> \"attrs\": ['bold', 'italic']\r\n> }\r\n> }\r\n> ```\r\n> \r\n> Every key in this `style` dictionary is the name of the style that you're gonna use in the `ansy strings`.\r\n> \r\n> Each style must have 4 `key:value` pairs.\r\n> \r\n> - `color_mode`: the color mode to use (`4`, `8`, `24`)\r\n> \r\n> - `fgcolor`: the foreground color of the style\r\n> \r\n> - `bgcolor`: the background color of the style\r\n> \r\n> - `attrs`: the attributes to apply\r\n> \r\n> One thing to note here, `color_mode` decides which color mode to use and you should provide a color supported by that mode. for example, if using `4` bit color mode, provide a color that is a valid 4-bit color. If using `8` bit, provide a color from `256` color system. For color mode `24`, provide an `RGBTuple` or a `Hex` color code.\r\n> \r\n> Back to our problem.\r\n> \r\n> ```py\r\n> from ansy import colored_ansy\r\n> # Define styles\r\n> style = {\r\n> \"orange\": {\r\n> \"color_mode\": 8,\r\n> \"fgcolor\": 'orange',\r\n> \"bgcolor\": None,\r\n> \"attrs\": None\r\n> },\r\n> \"purple\": {\r\n> \"color_mode\": 8,\r\n> \"fgcolor\": 'purple',\r\n> \"bgcolor\": None,\r\n> \"attrs\": ['bold']\r\n> }}\r\n> \r\n> formatted = colored_ansy(\"@orange[Hello] @purple[World]!\", style)\r\n> print(formatted) # Output: Hello, World!\r\n> ```\r\n> \r\n> You must be thinking, wow! what a solution. we now have to write even more lines of code, right?\r\n> \r\n> Well yeah! but only if you do it manually. there is a function in called `create_style()` which makes it easier to define styles.\r\n> \r\n> ```py\r\n> from ansy import colored_ansy, create_style\r\n> \r\n> # Create styles\r\n> style = {\r\n> \"orange\": create_style(8, fgcolor='orange'),\r\n> \"purple\": create_style(8, fgcolor='purple', attrs=['bold'])\r\n> }\r\n> \r\n> formatted = colored_ansy(\"@orange[Hello] @purple[World]!\", style)\r\n> print(formatted) # Output: Hello, World!\r\n> ```\r\n> \r\n> Still more code, but it's just a one time thing! now you can use `orange` and `purple` style to format as many parts as you want.\r\n> \r\n> This below example hides some parts of text using `concealed` attribute.\r\n> \r\n> ```py\r\n> # Reusing Styles\r\n> style['hide'] = create_style(attrs=['concealed'])\r\n> \r\n> formatted = ansy.colored_ansy('Hide this @hide[..], & this @hide[++], but not this @hide[**]', style)\r\n> print(formatted) # Output: Hide this , & this , but not this **\r\n> ```\r\n> \r\n> Note that `concealed` attribute does not remove/delete the text, it only hides it visually.\r\n> \r\n> #### Applying Gradients:\r\n> \r\n> Horizontal Gradients can be applied to the foreground of a string using two **24-bit** Colors using the `colored_gradient()` function.\r\n> \r\n> ```py\r\n> # Gradient (left-to-right) using Red and Blue colors\r\n> from ansy import colored_gradient\r\n> \r\n> formatted = colored_gradient('This is ansy.', (255,100,100), (100,50,200))\r\n> ```\r\n> \r\n> This method takes in `5` argument:\r\n> \r\n> - `text`: the text to apply the gradient to\r\n> \r\n> - `start_color`: starting foreground rgb color\r\n> \r\n> - `end_color`: ending foreground rgb color\r\n> \r\n> - `quality`: quality of the gradient\r\n> \r\n> > can be set to `high`, `medium` or `low`\r\n> \r\n> - `reverse` reverse the gradient to be (right to left) instead.\r\n> \r\n> Currently, this method only supports horizontal gradients, not vertical ones. but you can fake vertical gradients by introducing newline characters `\\n` in your string.\r\n> \r\n> ```py\r\n> text = \"This is text is \\ngoing to be used \\nto create or fake \\na vertical gradient.\"\r\n> print(colored_gradient(text, '#00ffff','#b00b1e'))\r\n> # Output:\r\n> # This is text is \r\n> # going to be used \r\n> # to create or fake \r\n> # a vertical gradient.\r\n> ```\r\n> \r\n> It still is horizontal gradient but it would appear as if it's a vertical gradient. *(well, technically diagonal)*\r\n> \r\n> #### Random Colors:\r\n> \r\n> Coloring strings in your application using random colors may not be the best thing to do. but it's there if you need.\r\n> \r\n> ```py\r\n> from ansy import colored_random\r\n> \r\n> formatted = colored_random('Random Random, Evil Phantom!')\r\n> print(formatted)\r\n> ```\r\n> \r\n> By default, this method choose a random color from `4-bit` colorsystem. but you can change the `color_mode` to `8` or `24` to use those colors.\r\n> \r\n> ```py\r\n> colored_random('text'. color_mode=24)\r\n> ```\r\n> \r\n> This method takes `6` arguments:\r\n> \r\n> - `text`: the text string\r\n> \r\n> - `target`: how to apply random colors\r\n> \r\n> - `chars`: apply a random color to each character of text\r\n> \r\n> - `words`: apply a random color to each word of text\r\n> \r\n> - `all`: apply a random color to whole text **(default)**\r\n> \r\n> - `color_mode`: the color mode to use\r\n> \r\n> - `custom_palette`: choose colors randomly only from this list of colors\r\n> \r\n> - `attrs`: the attributes to apply\r\n> \r\n> - `random_attrs`: randomize the attributes too\r\n> \r\n> You can also choose a `target` to apply random colors to.\r\n> \r\n> ```py\r\n> colored_random('Apply random colors to each word', target='words')\r\n> colored_random('Apply random colors to each character', target='chars')\r\n> ```\r\n> \r\n> You can pass a list of colors that you like, to `custom_palette` and this method then, will only choose colors from that list.\r\n> \r\n> ```py\r\n> palette = [\"#69D2E7\",\"#A7DBD8\",\"#E0E4CC\",\"#F38630\",\"#FA6900\"]\r\n> colored_random('Not so random palette.', custom_palette=palette, color_mode=24)\r\n> ```\r\n> \r\n> You can add colors from any color system into the `palette` list, but then make sure to set that color mode too.\r\n> \r\n> #### De-ansifying a string containing ANSI Codes:\r\n> \r\n> If you want to remove all `ANSI Escape Codes` from a string, you can use the `de_ansi` function.\r\n> \r\n> ```py\r\n> from ansy import colored, de_ansi\r\n> \r\n> ansi_string = colored('This string contains ANSI', 'light_blue', 'dark_grey', ['italic'])\r\n> clean_string = de_ansi(ansi_string)\r\n> \r\n> print([ansi_string]) # Output: ['\\x1b[3m\\x1b[100m\\x1b[94mThis string contains ANSI\\x1b[0m']\r\n> print([clean_string]) # Output: ['This string contains ANSI']\r\n> ```\r\n> \r\n> Notice how i am printing the strings, this is a neat little trick to check if a string contains `ANSI Codes` .\r\n> \r\n> By simply printing a string containing `ANSI`, you won't be able to see the **ANSI Escape Code** because, well, they are escaped. `print([ansi_string])` just prints the contents of a list and the `ANSI Codes` do not **\"ESCAPE\"** this way.\r\n> \r\n> Also you can write out the strings in a text file. that method works too.\r\n> \r\n> #### Widely Used Colors:\r\n> \r\n> Ansy includes `24-bit` colors to be used in your applications. These colors include:\r\n> \r\n> - `19` **Google's Material Colors** (with `14` different shades in each)\r\n> \r\n> - `140` **Web/HTML Colors**\r\n> \r\n> - `200` **Color Palettes** (with `5` colors in each)\r\n> \r\n> You can get these colors using the `colors` module within the `ansy` package.\r\n> \r\n> ```py\r\n> from ansy import colors\r\n> ```\r\n> \r\n> This module contains `4` functions:\r\n> \r\n> - `get_material_color()`: Takes in a `color` string and returns all shades of that color from **Material Colors**.\r\n> \r\n> - `get_palettes()`: Returns a generator iterator, which yields a list of colors on each iteration.\r\n> \r\n> - `get_random_palette()`: Returns a random palette from **Color Palettes**.\r\n> \r\n> - `get_web_colors()`: Returns a generator iterator, which yields dictionaries of colors from **Web/HTML Colors**.\r\n> \r\n> All **Material Colors** are tabulated in the **Useful to know** section with their names and shades.\r\n> \r\n> ```py\r\n> from ansy import colors\r\n> \r\n> # Material colors\r\n> materials = colors.get_material_color(\"red\")\r\n> print(materials)\r\n> # Output:\r\n> {\r\n> '50': '#ffebee',\r\n> '100': '#ffcdd2',\r\n> ...,\r\n> 'a700': '#d50000'\r\n> }\r\n> ```\r\n> \r\n> Get **Web Colors** like this:\r\n> \r\n> ```py\r\n> for color in colors.get_web_colors():\r\n> print(color)\r\n> # Output:\r\n> {'color': 'AliceBlue', 'hex': '#F0F8FF'}\r\n> {'color': 'AntiqueWhite', 'hex': '#FAEBD7'}\r\n> --snip--\r\n> {'color': 'YellowGreen', 'hex': '#9ACD32'}\r\n> ```\r\n> \r\n> And **Palettes** like this:\r\n> \r\n> ```py\r\n> for palette in colors.get_palettes():\r\n> print(palette)\r\n> # Output:\r\n> ['#69D2E7', '#A7DBD8', '#E0E4CC', '#F38630', '#FA6900']\r\n> ['#FE4365', '#FC9D9A', '#F9CDAD', '#C8C8A9', '#83AF9B']\r\n> --snip--\r\n> ['#5CACC4', '#8CD19D', '#CEE879', '#FCB653', '#FF5254']\r\n> ```\r\n> \r\n> And Get a random palette from these **Palettes** likes this:\r\n> \r\n> ```py\r\n> print(colors.get_random_palette())\r\n> # Output:\r\n> ['#041122', '#259073', '#7FDA89', '#C8E98E', '#E6F99D']\r\n> ```\r\n\r\n\r\n## \u258e ANSY API\r\n\r\n`colored(text, fgcolor=None, bgcolor=None, attrs=None, color_mode=4, no_color=None, force_color=None)`\r\n\r\nColorize text using `4`, `8`, or `24` bit colors. If `fgcolor`, `bgcolor`, and `attrs` all are `None`, the `text` itself is returned without any ansi codes added.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `text`: the text to colorize\r\n> \r\n> - `fgcolor`: the foreground color\r\n> \r\n> - `bgcolor`: the background color\r\n> \r\n> - `attrs`: the attributes to apply\r\n> \r\n> - `color_mode`: the colormode to use (defualt is `4`)\r\n> \r\n> ##### Returns:\r\n> \r\n> Formatted string.\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `ColorModeError` if:\r\n> \r\n> - `color_mode` is invalid\r\n> \r\n> Raises `InvalidColorError` if:\r\n> \r\n> - `fgcolor` is invalid\r\n> \r\n> - `bgcolor` is invalid\r\n> \r\n> Raises `AttributeError` if:\r\n> \r\n> - `attrs` contain an invalid attribute\r\n\r\n`colored_ansy(text, style, no_color=None, force_color=None)`\r\n\r\nAdds the styling defined in `style` to wherever an `ansy string` is found in the `text`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `text`: the text containing the `ansy strings`\r\n> \r\n> - `style`: a dictionary containing the style(s).\r\n> \r\n> ##### Returns:\r\n> \r\n> Formatted string.\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `StyleError` if:\r\n> \r\n> - style name used in `ansy string` not found in `style` dict\r\n> \r\n> Raises `ColorModeError` if:\r\n> \r\n> - `color_mode` provided in style, is invalid\r\n\r\n`colored_gradient(text, start_color=None, end_color=None, quality='medium', reverse=False)`\r\n\r\nApply horizontal gradient on `text`. This method uses `24-bit` color system.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `text`: the text to apply the gradient to\r\n> - `start_color`: starting foreground color (`RGBTuple` or `Hex code`)\r\n> - `end_color`: ending foreground color (`RGBTuple` or `Hex code`)\r\n> - `quality`: quality of the gradient (`high`, `medium`, or `low`)\r\n> - `reverse`: reverses the gradient to be (right to left) instead.\r\n> \r\n> ##### Returns:\r\n> \r\n> Formatted string.\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `InvalidColorError` if:\r\n> \r\n> - `start_color` is an invalid `24-bit` color\r\n> \r\n> - `end_color` is an invalid `24-bit` color\r\n> \r\n> Raises `AssertionError` if:\r\n> \r\n> - `quality` is not set to `high`, `medium`, or `low`\r\n\r\n`colored_random(text, target='all', color_mode=4, custom_palette=None, attrs=None, random_attrs=False)`\r\n\r\nApply a random color to `text`. colors are chosen from a colorsystem specified by `color_mode`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `text`: the text string\r\n> - `target`: apply random colors to `chars`, `words` or `all` string.\r\n> - `color_mode`: the colormode to use\r\n> - `custom_palette`: choose colors only from this iterable of user-defined colors\r\n> - `attrs`: the attributes to apply (attributes are **NOT** randomized by default)\r\n> - `random_attrs`: randomize the attributes too.\r\n> \r\n> ##### Returns:\r\n> \r\n> Formatted string.\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `ValueError` if:\r\n> \r\n> - `target` is not set to `chars`, `words`, `all`\r\n> \r\n> Raises `ColorModeError` if:\r\n> \r\n> - `color_mode` is invalid\r\n> \r\n> Raises `InvalidColorError` if:\r\n> \r\n> - `custom_palette` contains an invalid color\r\n> \r\n> Raises `AttributeError` if:\r\n> \r\n> - `attrs` contains an invalid attribute\r\n\r\n`colorname_to_code(color)`\r\n\r\nReturns the `code` for the `color` name from `8-bit` color system. Returns `None` if `color` is not a valid color name.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `color_name`: name of a color (from`8-bit` color system)\r\n> \r\n> ##### Returns:\r\n> \r\n> Color `code` or `None`\r\n\r\n`code_to_colorname(code)`\r\n\r\nReturns the color name for the `code`. Returns `None` if `code` is not a valid color.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `code`: code of a color (from `8-bit` color system **i.e. [0-255]**)\r\n> \r\n> ##### Returns:\r\n> \r\n> Color `name` or `None`\r\n\r\n`contains_ansi(text)`\r\n\r\nReturns `True` if `text` contains Ansi codes, else `False`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `text`: the text string to check\r\n> \r\n> ##### Returns:\r\n> \r\n> bool\r\n\r\n`create_style(color_mode=4, fgcolor=None, bgcolor=None, attrs=None)`\r\n\r\nCreates a style `dict` to use in `colored_ansy()` as style.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `color_mode`: the color mode (`4-bit`, `8-bit`, `24-bit`)\r\n> \r\n> - `4` means use 4-bit colors (`16` Standard colors)\r\n> \r\n> - `8` means use 8-bit colors (`256` colors)\r\n> \r\n> - `24` means use 24-bit colors (approx. `16.7 million` colors)\r\n> \r\n> - `fgcolor` the foreground color\r\n> \r\n> - `bgcolor` the foreground color\r\n> \r\n> - `attrs` the attributes list\r\n> \r\n> ##### Returns:\r\n> \r\n> Style `dict`\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `InvalidColorError` if:\r\n> \r\n> - `fgcolor` is not a valid color\r\n> \r\n> - `bgcolor` is not a valid color\r\n> \r\n> Raises `ColorModeError` if:\r\n> \r\n> - `color_mode` is invalid\r\n> \r\n> Raises `AttributeError` if:\r\n> \r\n> - `attrs` includes an invalid attribute string\r\n\r\n`create_random_palette(color_mode, n)`\r\n\r\nReturns a list of `n` colors from `color_mode`-bit color system.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `color_mode`: the colormode to use\r\n> - `n`: number of colors to include in palette\r\n> \r\n> ##### Returns:\r\n> \r\n> `list` of colors\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `TypeError` if:\r\n> \r\n> - `n`: is not an integer\r\n\r\n`de_ansi(text)`\r\n\r\nRemoves all `ANSI Codes` from given string.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `text` the text to remove ANSI codes from.\r\n> \r\n> ##### Returns:\r\n> \r\n> De-ansified string.\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `TypeError` if:\r\n> \r\n> - `text` is not a `str`\r\n\r\n`get_all_colors(sort_by_name=False)`\r\n\r\nYields a `tuple` of `color_name` and it's `code`. (sorted by `code`)\r\n\r\n> ##### Parameters:\r\n> \r\n> - `sort_by_name`: Sorts colors by name (default is `False` which sorts by code)\r\n> \r\n> ##### Returns:\r\n> \r\n> Generator obect.\r\n\r\n`get_random_color(color_mode=4)`\r\n\r\nReturns a random color from a colorsystem specified by `color_mode`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `color_mode`: the color system to use to choose random color from\r\n> \r\n> ##### Returns:\r\n> \r\n> Color name `str`, or rgb `tuple`\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `ColorModeError` if:\r\n> \r\n> - `color_mode` is invalid.\r\n\r\n`hex_to_rgb(hexcode)`\r\n\r\nConverts `hexcode` into an `RGBTuple`. It is case-insensitive and also recognizes shorter hex codes e.g `#FFF`, `#9ca` etc.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `hexcode`: a hex color code string\r\n> \r\n> ##### Returns:\r\n> \r\n> RGB tuple.\r\n\r\n`is_valid_attr(attr)`\r\n\r\nReturns `True` if `attr` is a valid Attribute, else `False`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `attr`: the attribute string\r\n> \r\n> ##### Returns:\r\n> \r\n> Boolean\r\n\r\n`is_valid_color(color, color_mode)`\r\n\r\nValidates the color based on `color_mode`. Returns `True` if color is valid, `False` otherwise.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `color`: a color from `4`, `8` or `24`-bit color system\r\n> - `color_mode`: the color mode of `color` (can be one of `4`, `8`, `24`)\r\n> \r\n> ##### Returns:\r\n> \r\n> Boolean\r\n\r\n`is_valid_hex(hexcode)`\r\n\r\nReturns `True` if `hexcode` is valid, else `False`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `hexcode`: the hex color code to validate\r\n> \r\n> ##### Returns:\r\n> \r\n> Boolean\r\n\r\n`is_valid_rgb(rgb)`\r\n\r\nReturns `True` if `rgb` is valid RGB tuple, else `False`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `rgb`: the rgb tuple to validate\r\n> \r\n> ##### Returns:\r\n> \r\n> Boolean\r\n\r\n`make_ansi(fgcolor=None, bgcolor=None, attrs=None, color_mode=4)`\r\n\r\nMake an `Ansi Escape Sequence` from the args given. Returns the sequence without `Ansi Reset Code`. This method is similar to `colored()`, but rather than adding sequence to the text, it returns the sequence itself. Matter of fact, `colored()` also uses this method under the hood.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `fgcolor`: the foreground color (any color that belongs to `color_mode` color system)\r\n> - `bgcolor`: the background color (any color that belongs to `color_mode` color system)\r\n> - `attrs`: the attributes list\r\n> - `color_mode`: the color mode to use\r\n> \r\n> ##### Returns:\r\n> \r\n> Ansi escape sequence `str`\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `InvalidColorError` if:\r\n> \r\n> - `fgcolor` is invalid or not from `color_mode` color system\r\n> - `bgcolor` is invalid or not from `color_mode` color system\r\n> \r\n> Raises `ColorModeError` if:\r\n> \r\n> - `color_mode` is invalid\r\n\r\n`make_gradient(start_color, end_color, steps=10, reverse=False)`\r\n\r\nMake a gradient between two RGB colors `start_color` and `end_color` by linearly interpolating between these for a given number of `steps`. Returns the `list` of rgb tuples.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `start_color`: starting rgb color\r\n> \r\n> - `end_color`: ending rgb color\r\n> \r\n> - `steps`: steps to interpolate across (minimum `2`)\r\n> \r\n> - `reverse`: flip the gradient horizontally\r\n> \r\n> ##### Returns:\r\n> \r\n> `list` of rgb colors\r\n> \r\n> ##### Exceptions:\r\n> \r\n> Raises `InvalidColorError` if:\r\n> \r\n> - `start_color` is not a valid RGBTuple\r\n> - `end_color` is not a valid RGBTuple\r\n\r\n`print_all_colors()`\r\n\r\nPrint all 256 colors from `8-bit` color system with their name and code. (sorted by `codes` in asc. order)\r\n\r\n> ##### Returns:\r\n> \r\n> Generator object.\r\n\r\n`printc(text, fgcolor=None, bgcolor=None, attrs=None, color_mode=4, sep=\" \", end=\"\\n\", file=None, flush=False, no_color=None, force_color=None)`\r\n\r\nPrints whatever returns from `colored()`.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `text`: the text to colorize\r\n> \r\n> - `fgcolor`: the foreground color\r\n> \r\n> - `bgcolor`: the background color\r\n> \r\n> - `attrs`: the attributes to apply\r\n> \r\n> - `color_mode`: the colormode to use (defualt is `4`)\r\n> \r\n> - `sep`: sep arg of print function.\r\n> \r\n> - `end`: end arg of print function.\r\n> \r\n> - `file`: file arg of print function.\r\n> \r\n> - `flush`: flush arg of print function.\r\n> \r\n> ##### Exceptions:\r\n> \r\n> All exceptions raised by `colored()`\r\n\r\n`rgb_to_hex(rgb, with_symbol=True)`\r\n\r\nConverts `rgb` tuple into Hex color code.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `rgb`: RGB tuple to convert to hex\r\n> - `with_symbol`: Whether to include the `#` symbol in output\r\n> \r\n> ##### Returns:\r\n> \r\n> Hex color code `str`\r\n\r\n`search_colors(query)`\r\n\r\nReturns a generator object which on each iteration, yields a tuple `(name, code)` of `8-bit` color that contain `query` in it's name. Returns `None` if query is empty.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `query`: the string to look for...\r\n> \r\n> ##### Returns:\r\n> \r\n> Generator Object.\r\n\r\n## \u258e Exceptions in ansy:\r\n\r\n`ColorModeError`\r\n\r\nRaised when encountered an inappropriate color mode that is unrecognized by `ansy`\r\n\r\n`HexError`\r\n\r\nRaised when encountered an invalid Hex color code.\r\n\r\n`InvalidColorError`\r\n\r\nRaised when encountered an inappropriate color that is unrecognized by `ansy`\r\n\r\n`RGBError`\r\n\r\nRaised when encountered an invalid RGB tuple.\r\n\r\n`StyleError`\r\n\r\nRaised when encountered an invalid style for `Ansy strings`\r\n\r\n## \u258e COLORS API\r\n\r\n`get_material_color(color)`\r\n\r\nReturns a `dict` of a material `color` (all of its shades). Returns `None` if `color` not found.\r\n\r\n> ##### Parameters:\r\n> \r\n> - `color`: name of a color from **Material Colors**\r\n> \r\n> ##### Returns:\r\n> \r\n> `dict` containing the shades of `color`\r\n\r\n`get_palettes()`\r\n\r\nReturns a generator object which on iteration, yields a color palette `list`.\r\n\r\n> ##### Returns:\r\n> \r\n> Generator object.\r\n\r\n`get_random_palette()`\r\n\r\nReturns a random color palette `list`.\r\n\r\n> ##### Returns:\r\n> \r\n> `list` of colors\r\n\r\n`get_web_colors()`\r\n\r\nReturns a generator object which on iteration, yields a color `dict` from **Web/HTML Colors**.\r\n\r\n> ##### Returns:\r\n> \r\n> Generator object.\r\n\r\n## \u258e Useful to know\r\n\r\n##### Standard Colors (4-Bit)\r\n\r\n`black`, `red`, `green`, `yellow`, `blue`, `magenta`, `cyan`, `white`,\r\n\r\n`light_grey`, `dark_grey`, `light_red`, `light_green`, `light_yellow`,\r\n\r\n`light_blue`, `light_magenta`, `light_cyan`\r\n\r\n##### 256 Colors (8-Bit)\r\n\r\nCall `ansy.print_all_colors()` to see all colors and their codes.\r\n\r\n##### Attributes\r\n\r\nThere are several attributes in `ansy` but not all are widely supported. some may not work as expected or not work at all.\r\n\r\n| Attribute | What it does |\r\n|:------------------ | -------------------------------------------------------------------------- |\r\n| `bold` | bolds the text or increases intensity |\r\n| `dark` | Darkens the text |\r\n| `italic` | Italicizes the text (Not widely supported) |\r\n| `blink` | Sets the blinking to less than 150 times per minute (Not widely supported) |\r\n| `reverse` | Swaps foreground and background colors of text |\r\n| `concealed` | Hides the text visually, but does not remove (Not widely supported) |\r\n| `underline` | Underlines the text |\r\n| `double-underline` | Double-Underlines the text (Disables bold mode on several terminals) |\r\n| `overline` | Overlines the text i.e line above the text (Not widely supported) |\r\n| `strike` | Strikes the text, as if marked for deletion (Not widely supported) |\r\n\r\n##### Material Colors:\r\n\r\nThese below are the names of Material Colors.\r\n\r\n`red`, `pink`, `purple`, `deeppurple`, `indigo`, `blue`, `lightblue`, `cyan`, `teal`, `green`, `lightgreen`, `lime`, `yellow`, `amber`, `orange`, `deeporange`, `brown`, `grey`, `bluegrey`.\r\n\r\nThese below are the shades of each Material color.\r\n\r\n`50`, `100`, `200`, `300`, `400`, `500`, `600`, `700`, `800`, `900`, `a100`, `a200`, `a400`, `a700`.\r\n\r\n### \u258e Attributions\r\n\r\n- `_can_do_colour()` (_which checks environment variables for tty/dumb terminals_) is borrowed from `termcolor`. see full license text in `THIRD_PARTY_LICENSES` file.\r\n\r\n- `8-bit` colors have been assigned X-Term names using **256-colors-cheatsheet** from [**ditig.com**](https://www.ditig.com/publications/256-colors-cheat-sheet) *(Updated and cleaned)*\r\n\r\n- `colors` module uses **1400+** colors that are taken from the [Corpora](https://github.com/dariusk/corpora) by Darius Kazemi.\r\n\r\nThank you all, for saving me from the frustration i had to go through if........\r\n\r\n### \u258e Compatibility and Testing\r\n\r\nThis package has been well-tested across multiple platforms, including **Windows**, **macOS**, and **Linux** _(ubuntu)_, ensuring broad compatibility.\r\n\r\nIt is tested on Python versions `3.9` upto `3.12`. it may or may not work on other versions.\r\n\r\n---\r\n\r\nI think i'm starting to \u2665 `markdown` even more than `python`.\r\n\r\n###### Author: \u275d Anas shakeel \u275e\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "A Python package to colorize and format output in the terminal.",
"version": "1.0.2",
"project_urls": {
"Homepage": "https://github.com/Anas-Shakeel/ansy"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "6f6da0a19f99ae01f538a875fea6f27dcc1989c36e570910a7743c746bf839fa",
"md5": "c56ee11c1e2ecc32e578693298f815ef",
"sha256": "31031c07f8183213570b95500974ab87b0cc2cd98583d9c31674c0daf1f09bb2"
},
"downloads": -1,
"filename": "ansy-1.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c56ee11c1e2ecc32e578693298f815ef",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 35479,
"upload_time": "2024-10-16T22:40:02",
"upload_time_iso_8601": "2024-10-16T22:40:02.032690Z",
"url": "https://files.pythonhosted.org/packages/6f/6d/a0a19f99ae01f538a875fea6f27dcc1989c36e570910a7743c746bf839fa/ansy-1.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d21c0863e7c5e5b07365dfa032d9ee8aaf316f204ccb6763350250414d58c00e",
"md5": "1ebe61711ee0d52c0117598d42b6e5ea",
"sha256": "6a20c1f1e14441aa23b65804695616ed910a0c5f9a538cc6a137ef323b43be34"
},
"downloads": -1,
"filename": "ansy-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "1ebe61711ee0d52c0117598d42b6e5ea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 51793,
"upload_time": "2024-10-16T22:40:04",
"upload_time_iso_8601": "2024-10-16T22:40:04.282469Z",
"url": "https://files.pythonhosted.org/packages/d2/1c/0863e7c5e5b07365dfa032d9ee8aaf316f204ccb6763350250414d58c00e/ansy-1.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-16 22:40:04",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Anas-Shakeel",
"github_project": "ansy",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "ansy"
}