2020-07-03 20:07:07 +00:00
|
|
|
|
# Rich
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
[![PyPI version](https://badge.fury.io/py/rich.svg)](https://badge.fury.io/py/rich)
|
2020-08-05 00:41:32 +00:00
|
|
|
|
[![codecov](https://codecov.io/gh/willmcgugan/rich/branch/master/graph/badge.svg)](https://codecov.io/gh/willmcgugan/rich)
|
2020-07-03 20:07:07 +00:00
|
|
|
|
[![Rich blog](https://img.shields.io/badge/blog-rich%20news-yellowgreen)](https://www.willmcgugan.com/tag/rich/)
|
|
|
|
|
[![Twitter Follow](https://img.shields.io/twitter/follow/willmcgugan.svg?style=social)](https://twitter.com/willmcgugan)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 是一个 Python 库,可以为您在终端中提供富文本和精美格式。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
[Rich API](https://rich.readthedocs.io/en/latest/) 可以很容易的在终端输出添加各种颜色和不同风格。Rich 还可以绘制漂亮的表格,进度条,markdown,突出显示语法的源代码及回溯等等,不胜枚举。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![功能纵览](https://github.com/willmcgugan/rich/raw/master/imgs/features.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
有关 Rich 的视频介绍,请参见
|
|
|
|
|
[@fishnets88](https://twitter.com/fishnets88)录制的
|
|
|
|
|
[calmcode.io](https://calmcode.io/rich/introduction.html)。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 兼容性
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 适用于 Linux,OSX 和 Windows。真彩色/表情符号可与新的 Windows 终端一起使用,Windows 的经典终端仅限 8 种颜色。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 还可以与[Jupyter 笔记本](https://jupyter.org/)一起使用,而无需其他配置。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 安装说明
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
使用`pip`或其他 PyPi 软件包管理器进行安装。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
pip install rich
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## Rich 的打印功能
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:10:18 +00:00
|
|
|
|
想毫不费力地将 Rich 的输出功能添加到您的应用程序中,您只需导入[rich 打印](https://rich.readthedocs.io/en/latest/introduction.html#quick-start)方法,该方法和其他 Python 的自带功能的参数类似。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
您可以试试:
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from rich import print
|
|
|
|
|
|
|
|
|
|
print("Hello, [bold magenta]World[/bold magenta]!", ":vampire:", locals())
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![Hello World](https://github.com/willmcgugan/rich/raw/master/imgs/print.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 使用控制台
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:10:18 +00:00
|
|
|
|
想要对 Rich 终端内容进行更多控制,请您导入并构造一个[控制台](https://rich.readthedocs.io/en/latest/reference/console.html#rich.console.Console)对象。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from rich.console import Console
|
|
|
|
|
|
|
|
|
|
console = Console()
|
|
|
|
|
```
|
2020-07-03 20:07:07 +00:00
|
|
|
|
|
|
|
|
|
Console 对象含有一个`print` 方法,它的界面与 python 内置的`print`功能界面相似。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
您可以试试:
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
console.print("Hello", "World!")
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
您可能已经料到,这时终端上会显示“ Hello World!”。请注意,与内置的“打印”功能不同,Rich 会将文字自动换行以适合终端宽度。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
有几种方法可以为输出添加颜色和样式。您可以通过添加`style`关键字参数来为整个输出设置样式。例子如下:
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
console.print("Hello", "World!", style="bold red")
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
输出如下图:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![Hello World](https://github.com/willmcgugan/rich/raw/master/imgs/hello_world.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
这个范例一次只设置了一行文字的样式。如果想获得更细腻更复杂的样式,Rich 可以渲染一个特殊的标记,其语法类似于[bbcode](https://en.wikipedia.org/wiki/BBCode)。示例如下:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
console.print("Where there is a [bold cyan]Will[/bold cyan] there [u]is[/u] a [i]way[/i].")
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![控制台标记](https://github.com/willmcgugan/rich/raw/master/imgs/where_there_is_a_will.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
### 控制台记录
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Console 对象具有一个`log()`方法,该方法具有与`print()`类似的界面,除此之外,还能成列显示当前时间以及被调用的文件和行。默认情况下,Rich 将针对 Python 结构和 repr 字符串进行语法突出显示。如果您记录一个集合(如字典或列表),Rich 会把它漂亮地打印出来,使其切合可用空间。下面是其中一些功能的示例:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from rich.console import Console
|
|
|
|
|
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"},
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
def test_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()
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
以上范例的输出如下:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![日志](https://github.com/willmcgugan/rich/raw/master/imgs/log.png)
|
|
|
|
|
|
|
|
|
|
注意其中的`log_locals`参数会输出一个表格,该表格包含调用 log 方法的局部变量。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
log 方法既可用于将长时间运行应用程序(例如服务器)的日志记录到终端,也可用于辅助调试。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
### 记录处理程序
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
您还可以使用内置的[处理类](https://rich.readthedocs.io/en/latest/logging.html)来对 Python 日志记录模块的输出进行格式化和着色。下面是输出示例:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![记录](https://github.com/willmcgugan/rich/raw/master/imgs/logging.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 表情符号
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
将名称放在两个冒号之间即可在控制台输出中插入表情符号。示例如下:
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
>>> console.print(":smiley: :vampire: :pile_of_poo: :thumbs_up: :raccoon:")
|
|
|
|
|
😃 🧛 💩 👍 🦝
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
请谨慎地使用此功能。
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 表格
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 可以使用 Unicode 框字符来呈现多变的[表格](https://rich.readthedocs.io/en/latest/tables.html)。Rich 包含多种边框,样式,单元格对齐等格式设置的选项。下面是一个简单的示例:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from rich.console import Console
|
|
|
|
|
from rich.table import Column, Table
|
|
|
|
|
|
|
|
|
|
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(
|
|
|
|
|
"Dev 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)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
该示例的输出如下:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![表格](https://github.com/willmcgugan/rich/raw/master/imgs/table.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
请注意,控制台标记的呈现方式与`print()`和`log()`相同。实际上,由 Rich 渲染的任何内容都可以添加到标题/行(甚至其他表格)中。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
`Table`类很聪明,可以调整列的大小以适合终端的可用宽度,并能根据需要环绕文本。下面是相同的示例,输出与比上表小的终端上:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![表格 2](https://github.com/willmcgugan/rich/raw/master/imgs/table2.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 进度条
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 可以渲染多个不闪烁的[进度](https://rich.readthedocs.io/en/latest/progress.html)条形图,以跟踪长时间运行的任务。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
基本用法:用`track`函数调用任何程序并迭代结果。下面是一个例子:
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from rich.progress import track
|
|
|
|
|
|
|
|
|
|
for step in track(range(100)):
|
|
|
|
|
do_step(step)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
添加多个进度条并不难。以下是从文档中获取的示例:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![进度](https://github.com/willmcgugan/rich/raw/master/imgs/progress.gif)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
这些列可以配置为显示您所需的任何详细信息。内置列包括完成百分比,文件大小,文件速度和剩余时间。下面是显示正在进行的下载的示例:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![进度](https://github.com/willmcgugan/rich/raw/master/imgs/downloader.gif)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
要自己尝试一下,请参阅[examples/downloader.py](https://github.com/willmcgugan/rich/blob/master/examples/downloader.py),它可以在显示进度的同时下载多个 URL。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 列
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 可以将内容通过排列整齐的,具有相等或最佳的宽度的[列](https://rich.readthedocs.io/en/latest/columns.html)来呈现。下面是(macOS / Linux)`ls`命令的一个非常基本的克隆,用于用列来显示目录列表:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
|
|
from rich import print
|
|
|
|
|
from rich.columns import Columns
|
|
|
|
|
|
|
|
|
|
directory = os.listdir(sys.argv[1])
|
|
|
|
|
print(Columns(directory))
|
|
|
|
|
```
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
以下屏幕截图是[列示例](https://github.com/willmcgugan/rich/blob/master/examples/columns.py)的输出,该列显示了从 API 提取的数据:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![列](https://github.com/willmcgugan/rich/raw/master/imgs/columns.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
## Markdown
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 可以呈现[markdown](https://rich.readthedocs.io/en/latest/markdown.html),并可相当不错的将其格式转移到终端。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
为了渲染 markdown,请导入`Markdown` 类,并使用包含 markdown 代码的字符串来构造它,然后将其打印到控制台。例子如下:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from rich.console import Console
|
|
|
|
|
from rich.markdown import Markdown
|
|
|
|
|
|
|
|
|
|
console = Console()
|
|
|
|
|
with open("README.md") as readme:
|
|
|
|
|
markdown = Markdown(readme.read())
|
|
|
|
|
console.print(markdown)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
该例子的输出如下图:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![markdown](https://github.com/willmcgugan/rich/raw/master/imgs/markdown.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 语法突出显示
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 使用[pygments](https://pygments.org/)库来实现[语法高亮显示](https://rich.readthedocs.io/en/latest/syntax.html)。用法类似于渲染 markdown。构造一个`Syntax`对象并将其打印到控制台。下面是一个例子:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from rich.console import Console
|
|
|
|
|
from rich.syntax import Syntax
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
输出如下:
|
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![语法](https://github.com/willmcgugan/rich/raw/master/imgs/syntax.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
## 回溯
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
Rich 可以渲染漂亮的回溯,比标准 Python 回溯更容易阅读,并能显示更多代码。您可以将 Rich 设置为默认的回溯处理程序,这样所有难以捕获的异常都将由 Rich 为您呈现。
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
下面是在 OSX(与 Linux 类似)上的外观:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![回溯](https://github.com/willmcgugan/rich/raw/master/imgs/traceback.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
下面是 Windows 上的外观:
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
![回溯_windows](https://github.com/willmcgugan/rich/raw/master/imgs/traceback_windows.png)
|
2020-07-03 19:55:58 +00:00
|
|
|
|
|
2020-07-03 20:07:07 +00:00
|
|
|
|
有关详细信息,请参见[rich 回溯](https://rich.readthedocs.io/en/latest/traceback.html)文档记述。
|