Pretty-print tabular data in Python with extensive formatting options and output format support.
Overall
score
69%
A utility that formats data from various sources into readable table reports for command-line display.
@generates
def format_employee_report(employee_data, headers=None):
"""
Formats employee data into a readable table string.
Args:
employee_data: List of lists or list of dicts containing employee information
headers: Optional list of column header names
Returns:
str: Formatted table as a string
"""
pass
def format_product_report(product_data):
"""
Formats product data from dictionaries into a readable table string.
Uses dictionary keys as column headers.
Args:
product_data: List of dictionaries containing product information
Returns:
str: Formatted table as a string
"""
passProvides table formatting functionality.
Install with Tessl CLI
npx tessl i tessl/pypi-tabulatedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10