Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tehmaze/ansi
ANSI cursor movement and graphics in Python
https://github.com/tehmaze/ansi
ansi color colors colour colours ecma-048 python terminal
Last synced: 9 days ago
JSON representation
ANSI cursor movement and graphics in Python
- Host: GitHub
- URL: https://github.com/tehmaze/ansi
- Owner: tehmaze
- License: mit
- Created: 2012-11-29T08:53:43.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2024-01-22T00:58:53.000Z (10 months ago)
- Last Synced: 2024-05-01T20:37:45.139Z (6 months ago)
- Topics: ansi, color, colors, colour, colours, ecma-048, python, terminal
- Language: Python
- Homepage: https://pypi.org/project/ansi/
- Size: 62.5 KB
- Stars: 48
- Watchers: 7
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
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.