This commit is contained in:
Will McGugan 2020-07-31 18:51:46 +01:00
parent c0ee115e74
commit 2b0ad53e1c
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ Environment variables
Rich respects some standard environment variables.
Settings the environment variable ``TERM`` to ``"dumb"`` or ``"unknown"`` will disable color/style and some features that require moving the cursor, such as progress bars.
Setting the environment variable ``TERM`` to ``"dumb"`` or ``"unknown"`` will disable color/style and some features that require moving the cursor, such as progress bars.
If the environment variable ``NO_COLOR`` is set, Rich will disable all color in the output.

View File

@ -1,9 +1,9 @@
Introduction
============
Rich is a Python library for writing *rich* text (with color and formatting) to the terminal, and for rendering content such as tables, markdown, and syntax highlighted code.
Rich is a Python library for writing *rich* text (with color and style) to the terminal, and for displaying advanced content such as tables, markdown, and syntax highlighted code.
Use Rich to make command line applications visually appealing and present data in a more readable way. Rich can also be a useful debugging aid by pretty printing and syntax highlighting data structures.
Use Rich to make your command line applications visually appealing and present data in a more readable way. Rich can also be a useful debugging aid by pretty printing and syntax highlighting data structures.
Requirements
------------