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%
{
"context": "This criteria evaluates how effectively the engineer uses the tabulate package to generate reports in multiple output formats. The focus is on proper use of tabulate's format selection capabilities and correct handling of different output formats.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses tabulate function",
"description": "Solution imports and uses the tabulate() function from the tabulate package",
"max_score": 15
},
{
"name": "GitHub format implementation",
"description": "Uses tablefmt='github' parameter to generate GitHub Flavored Markdown tables",
"max_score": 20
},
{
"name": "PostgreSQL format implementation",
"description": "Uses tablefmt='psql' parameter to generate PostgreSQL-style console output",
"max_score": 20
},
{
"name": "HTML format implementation",
"description": "Uses tablefmt='html' parameter to generate HTML table markup",
"max_score": 20
},
{
"name": "LaTeX format implementation",
"description": "Uses tablefmt='latex' parameter to generate LaTeX tabular format",
"max_score": 20
},
{
"name": "Header extraction",
"description": "Uses headers='keys' parameter or passes appropriate header list to extract column headers from dictionary keys",
"max_score": 5
}
]
}