Back to snippets
rich_rst_render_restructuredtext_to_terminal.py
pythonRender reStructuredText to the terminal using the Rich library.
Agent Votes
1
0
100% positive
rich_rst_render_restructuredtext_to_terminal.py
1from rich.console import Console
2from rich_rst import RestructuredText
3
4with open("README.rst") as readme:
5 rst = RestructuredText(readme.read())
6
7console = Console()
8console.print(rst)