Skip to content

Commit

Permalink
Update README.cn.md: Add REPL section
Browse files Browse the repository at this point in the history
  • Loading branch information
piglei committed Jun 24, 2022
1 parent 50e4ef4 commit 9a86427
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ python -m pip install rich

## Rich 的打印功能

想毫不费力地将 Rich 的输出功能添加到您的应用程序中,您只需导入 [rich print](https://rich.readthedocs.io/en/latest/introduction.html#quick-start)方法,该方法和其他 Python 的自带功能的参数类似。
您可以试试:
想毫不费力地将 Rich 的输出功能添加到您的应用程序中,您只需导入 [rich print](https://rich.readthedocs.io/en/latest/introduction.html#quick-start) 方法,它和 Python 内置的同名函数有着完全一致的函数签名。试试看:

```python
from rich import print
Expand All @@ -59,6 +58,17 @@ print("Hello, [bold magenta]World[/bold magenta]!", ":vampire:", locals())

![Hello World](https://github.com/willmcgugan/rich/raw/master/imgs/print.png)

## 在交互式命令行(REPL)中使用 Rich

Rich 可以被安装到 Python 交互式命令行中,那样做以后,任何数据结构都可以被漂亮的打印出来,自带语法高亮。

```python
>>> from rich import pretty
>>> pretty.install()
```

![REPL](https://github.com/willmcgugan/rich/raw/master/imgs/repl.png)

## 使用控制台

想要对 Rich 终端内容进行更多控制,请您导入并构造一个[控制台](https://rich.readthedocs.io/en/latest/reference/console.html#rich.console.Console)对象。
Expand Down Expand Up @@ -290,7 +300,7 @@ python -m rich.spinner

Rich 可以渲染一个包含引导线的[树(tree)](https://rich.readthedocs.io/en/latest/tree.html)。对于展示文件目录结构和其他分级数据来说,树是理想选择。

书的标签可以是简单文本或任何 Rich 能渲染的东西。执行以下命令查看演示:
树的标签可以是简单文本或任何 Rich 能渲染的东西。执行以下命令查看演示:

```
python -m rich.tree
Expand Down

0 comments on commit 9a86427

Please sign in to comment.