Pretty-print tabular data in Python with extensive formatting options and output format support.
Overall
score
69%
{
"context": "This criteria evaluates how well the engineer uses the tabulate package's simple_separated_format() function to create custom table formats with different column separators. The focus is on proper usage of this specific API to generate tables with custom delimiters.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Uses simple_separated_format",
"description": "Implementation correctly uses the simple_separated_format() function from the tabulate package to create custom table formats",
"max_score": 40
},
{
"name": "Passes separator parameter",
"description": "Implementation correctly passes the separator argument to simple_separated_format() to customize the column delimiter",
"max_score": 20
},
{
"name": "Uses tabulate function",
"description": "Implementation correctly uses the tabulate() function with the custom format returned by simple_separated_format() via the tablefmt parameter",
"max_score": 25
},
{
"name": "Handles headers correctly",
"description": "Implementation correctly extracts and uses headers from the input data using the headers='keys' parameter or equivalent when working with dictionaries",
"max_score": 15
}
]
}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