Overview
Rich 13.7, released on November 15, 2023, brings late-cycle features for the 13.x branch.
Main Features
Late-cycle improvements
Bug fixes, table and Markdown rendering improvements, and better Windows terminal support.
python
from rich.console import Console
from rich.table import Table
console = Console()
table = Table(title='Python Modules')
table.add_column('Module', style='cyan')
table.add_column('Version', style='green')
table.add_row('Rich', '13.7')
table.add_row('attrs', '23.1')
console.print(table)
