tessl install tessl/pypi-tabulate@0.9.0Pretty-print tabular data in Python with extensive formatting options and output format support.
Agent Success
Agent success rate when using this tile
69%
Improvement
Agent success rate improvement when using this tile compared to baseline
0.9x
Baseline
Agent success rate without this tile
77%
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.