Skip to content

tehmaze/ansi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d09537e · Jan 22, 2024
Jan 22, 2024
Jan 30, 2022
Jan 22, 2024
May 27, 2015
Oct 20, 2013
Jun 5, 2023
Jan 29, 2022
Jan 22, 2024
Jan 22, 2024
Jan 30, 2022

Repository files navigation

ANSI

Various ANSI escape codes, used in moving the cursor in a text console or rendering coloured text.

Example

Print something in bold yellow on a red background:

>>> from ansi.colour import fg, bg
>>> from ansi.colour.fx import reset
>>> msg = (bg.red, fg.yellow, 'Hello world!', reset)
>>> print(''.join(map(str, msg)))
...

If you like syntactic sugar, you may also do:

>>> from ansi.colour import fg, bg
>>> print(bg.red(fg.yellow('Hello world!')))
...

Also, 256 RGB colours are supported:

>>> from ansi.colour.rgb import rgb256
>>> from ansi.colour.fx import reset
>>> msg = (rgb256(0xff, 0x80, 0x00), 'hello world', reset)
>>> print(''.join(map(str, msg)))
...

If you prefer to use American English instead:

>>> from ansi.color import ...

References

https://www.ecma-international.org/publications-and-standards/standards/ecma-48/

Requirements

Ansi requires python 3.6 and supports typing.