Skip to content

Snippets

A Python library for rich text and beautiful formatting in the terminal.

Example usage of rich
import time
from rich.progress import track
for i in track(range(20), description="For example:"):
time.sleep(0.05)