Skip to content

Textualize/rich

Repository files navigation

Supported Python VersionsPyPI version

Downloads codecov Rich blog Twitter Follow

Logo

English readmeGiản thể tiếng Trung readmeChữ chân phương tiếng Trung readmeLengua española readmeDeutsche readmeLäs på svenskaNhật Bản ngữ readme한국어 readmeFrançais readmeSchwizerdütsch readmeहिन्दी readmePortuguês brasileiro readmeItalian readmeРусский readmeIndonesian readmeفارسی readmeTürkçe readmePolskie readme

Rich is a Python library forrichtext and beautiful formatting in the terminal.

TheRich APImakes it easy to add color and style to terminal output. Rich can also render pretty tables, progress bars, markdown, syntax highlighted source code, tracebacks, and more — out of the box.

Features

For a video introduction to Rich seecalmcode.ioby@fishnets88.

See whatpeople are saying about Rich.

Compatibility

Rich works with Linux, macOS and Windows. True color / emoji works with new Windows Terminal, classic terminal is limited to 16 colors. Rich requires Python 3.7 or later.

Rich works withJupyter notebookswith no additional configuration required.

Installing

Install withpipor your favorite PyPI package manager.

Python -m pip install rich

Run the following to test Rich output on your terminal:

Python -m rich

Rich Print

To effortlessly add rich output to your application, you can import therich printmethod, which has the same signature as the builtin Python function. Try this:

fromrichimportprint

print("Hello, [bold magenta]World[/bold magenta]!",":vampire:",locals())

Hello World

Rich REPL

Rich can be installed in the Python REPL, so that any data structures will be pretty printed and highlighted.

>>>fromrichimportpretty
>>>pretty.install()

REPL

Using the Console

For more control over rich terminal content, import and construct aConsoleobject.

fromrich.consoleimportConsole

console=Console()

The Console object has aprintmethod which has an intentionally similar interface to the builtinprintfunction. Here's an example of use:

console.print("Hello","World!")

As you might expect, this will print"Hello World!"to the terminal. Note that unlike the builtinprintfunction, Rich will word-wrap your text to fit within the terminal width.

There are a few ways of adding color and style to your output. You can set a style for the entire output by adding astylekeyword argument. Here's an example:

console.print("Hello","World!",style="bold red")

The output will be something like the following:

Hello World

That's fine for styling a line of text at a time. For more finely grained styling, Rich renders a special markup which is similar in syntax tobbcode.Here's an example:

console.print("Where there is a [bold cyan]Will[/bold cyan] there [u]is[/u] a [i]way[/i].")

Console Markup

You can use a Console object to generate sophisticated output with minimal effort. See theConsole APIdocs for details.

Rich Inspect

Rich has aninspectfunction which can produce a report on any Python object, such as class, instance, or builtin.

>>>my_list=["foo","bar"]
>>>fromrichimportinspect
>>>inspect(my_list,methods=True)

Log

See theinspect docsfor details.

Rich Library

Rich contains a number of builtinrenderablesyou can use to create elegant output in your CLI and help you debug your code.

Click the following headings for details:

Log

The Console object has alog()method which has a similar interface toprint(),but also renders a column for the current time and the file and line which made the call. By default Rich will do syntax highlighting for Python structures and for repr strings. If you log a collection (i.e. a dict or a list) Rich will pretty print it so that it fits in the available space. Here's an example of some of these features.

fromrich.consoleimportConsole
console=Console()

test_data=[
{"jsonrpc":"2.0","method":"sum","params":[None,1,2,4,False,True],"id":"1",},
{"jsonrpc":"2.0","method":"notify_hello","params":[7]},
{"jsonrpc":"2.0","method":"subtract","params":[42,23],"id":"2"},
]

deftest_log():
enabled=False
context={
"foo":"bar",
}
movies=["Deadpool","Rise of the Skywalker"]
console.log("Hello from",console,"!")
console.log(test_data,log_locals=True)


test_log()

The above produces the following output:

Log

Note thelog_localsargument, which outputs a table containing the local variables where the log method was called.

The log method could be used for logging to the terminal for long running applications such as servers, but is also a very nice debugging aid.

Logging Handler

You can also use the builtinHandler classto format and colorize output from Python's logging module. Here's an example of the output:

Logging

Emoji

To insert an emoji in to console output place the name between two colons. Here's an example:

>>>console.print(":smiley::vampire::pile_of_poo::thumbs_up::raccoon:")
😃 🧛 💩 👍 🦝

Please use this feature wisely.

Tables

Rich can render flexibletableswith unicode box characters. There is a large variety of formatting options for borders, styles, cell alignment etc.

table movie

The animation above was generated withtable_movie.pyin the examples directory.

Here's a simpler table example:

fromrich.consoleimportConsole
fromrich.tableimportTable

console=Console()

table=Table(show_header=True,header_style="bold magenta")
table.add_column("Date",style="dim",width=12)
table.add_column("Title")
table.add_column("Production Budget",justify="right")
table.add_column("Box Office",justify="right")
table.add_row(
"Dec 20, 2019","Star Wars: The Rise of Skywalker","$275,000,000","$375,126,118"
)
table.add_row(
"May 25, 2018",
"[red]Solo[/red]: A Star Wars Story",
"$275,000,000",
"$393,151,347",
)
table.add_row(
"Dec 15, 2017",
"Star Wars Ep. VIII: The Last Jedi",
"$262,000,000",
"[bold]$1,332,539,889[/bold]",
)

console.print(table)

This produces the following output:

table

Note that console markup is rendered in the same way asprint()andlog().In fact, anything that is renderable by Rich may be included in the headers / rows (even other tables).

TheTableclass is smart enough to resize columns to fit the available width of the terminal, wrapping text as required. Here's the same example, with the terminal made smaller than the table above:

table2

Progress Bars

Rich can render multiple flicker-freeprogressbars to track long-running tasks.

For basic usage, wrap any sequence in thetrackfunction and iterate over the result. Here's an example:

fromrich.progressimporttrack

forstepintrack(range(100)):
do_step(step)

It's not much harder to add multiple progress bars. Here's an example taken from the docs:

progress

The columns may be configured to show any details you want. Built-in columns include percentage complete, file size, file speed, and time remaining. Here's another example showing a download in progress:

progress

To try this out yourself, seeexamples/downloader.pywhich can download multiple URLs simultaneously while displaying progress.

Status

For situations where it is hard to calculate progress, you can use thestatusmethod which will display a 'spinner' animation and message. The animation won't prevent you from using the console as normal. Here's an example:

fromtimeimportsleep
fromrich.consoleimportConsole

console=Console()
tasks=[f "task{n}"forninrange(1,11)]

withconsole.status("[bold green]Working on tasks...")asstatus:
whiletasks:
task=tasks.pop(0)
sleep(1)
console.log(f "{task}complete ")

This generates the following output in the terminal.

status

The spinner animations were borrowed fromcli-spinners.You can select a spinner by specifying thespinnerparameter. Run the following command to see the available values:

Python -m rich.spinner

The above command generates the following output in the terminal:

spinners

Tree

Rich can render atreewith guide lines. A tree is ideal for displaying a file structure, or any other hierarchical data.

The labels of the tree can be simple text or anything else Rich can render. Run the following for a demonstration:

Python -m rich.tree

This generates the following output:

markdown

See thetree.pyexample for a script that displays a tree view of any directory, similar to the linuxtreecommand.

Columns

Rich can render content in neatcolumnswith equal or optimal width. Here's a very basic clone of the (MacOS / Linux)lscommand which displays a directory listing in columns:

importos
importsys

fromrichimportprint
fromrich.columnsimportColumns

directory=os.listdir(sys.argv[1])
print(Columns(directory))

The following screenshot is the output from thecolumns examplewhich displays data pulled from an API in columns:

columns

Markdown

Rich can rendermarkdownand does a reasonable job of translating the formatting to the terminal.

To render markdown import theMarkdownclass and construct it with a string containing markdown code. Then print it to the console. Here's an example:

fromrich.consoleimportConsole
fromrich.markdownimportMarkdown

console=Console()
withopen("README.md")asreadme:
markdown=Markdown(readme.read())
console.print(markdown)

This will produce output something like the following:

markdown

Syntax Highlighting

Rich uses thepygmentslibrary to implementsyntax highlighting.Usage is similar to rendering markdown; construct aSyntaxobject and print it to the console. Here's an example:

fromrich.consoleimportConsole
fromrich.syntaximportSyntax

my_code='''
def iter_first_last(values: Iterable[T]) -> Iterable[Tuple[bool, bool, T]]:
"""Iterate and generate a tuple with a flag for first and last value." ""
iter_values = iter(values)
try:
previous_value = next(iter_values)
except StopIteration:
return
first = True
for value in iter_values:
yield first, False, previous_value
first = False
previous_value = value
yield first, True, previous_value
'''
syntax=Syntax(my_code,"Python",theme="monokai",line_numbers=True)
console=Console()
console.print(syntax)

This will produce the following output:

syntax

Tracebacks

Rich can renderbeautiful tracebackswhich are easier to read and show more code than standard Python tracebacks. You can set Rich as the default traceback handler so all uncaught exceptions will be rendered by Rich.

Here's what it looks like on OSX (similar on Linux):

traceback

All Rich renderables make use of theConsole Protocol,which you can also use to implement your own Rich content.

Rich CLI

See alsoRich CLIfor a command line application powered by Rich. Syntax highlight code, render markdown, display CSVs in tables, and more, directly from the command prompt.

Rich CLI

Textual

See also Rich's sister project,Textual,which you can use to build sophisticated User Interfaces in the terminal.

Textual screenshot