?
Rich Tools

A python package with helpful functions for use alongside with the rich python library.

PyPI version Supported Python Versions Test ?? Twitter


The current features are:

  • Convert a Pandas DataFrame into a rich Table ➜ df_to_table()

    By making this conversion, we can now pretty print a DataFrame in the terminal with rich. Bridging the gap between pandas and rich also provides a path for loading external data into a rich Table using Pandas functions such as .from_csv()!

  • Convert a rich Table into a Pandas DataFrame ➜ table_to_df()

    By bridging the gap between a rich Table and a DataFrame, we can now take additional actions on our data such as
    saving the data to a csv using the Pandas function .to_csv()!

  • Convert a rich Table into a list of dictionaries. ➜ table_to_dicts()

    Get your tables rows as a list of dictionaries with column names as key, and row contents as values.

Installation

$ pip install rich-tools

Example

Additional examples can be found in the examples dir.

# Print csv data to the terminal as a pretty printed rich formatted table

import pandas as pd
from rich import print
from rich_tools import df_to_table

if __name__ == '__main__':
    df = pd.read_csv("sample_input.csv")
    table = df_to_table(df)
    print(table)

Credits

  • Like the rich package itself, its creator Will McGugan is awesome! Check out Textual “a TUI (Text User Interface) framework for Python inspired by modern web development”. Thank you for the advice you’ve given on this project!
    ?
  • I am grateful for folks who give some of their time to this project in any form. Check out the list of and learn more about contributing here.

GitHub

GitHub - avi-perl/rich_tools at pythonawesome.com
Helpful functions for use alongside the rich Python library. - GitHub - avi-perl/rich_tools at pythonawesome.com