or run

tessl search
Log in

Version

Workspace
tessl
Visibility
Public
Created
Last updated
Describes
pypipkg:pypi/pyexcel-xlsx@0.6.x
tile.json

tessl/pypi-pyexcel-xlsx

tessl install tessl/pypi-pyexcel-xlsx@0.6.0

A wrapper library to read, manipulate and write data in xlsx and xlsm format

Agent Success

Agent success rate when using this tile

76%

Improvement

Agent success rate improvement when using this tile compared to baseline

1.38x

Baseline

Agent success rate without this tile

55%

rubric.jsonevals/scenario-3/

{
  "context": "Evaluates how well the solution uses pyexcel-xlsx convenience helpers to load and save Excel data while honoring sheet visibility, sheet order, and stream workflows required by the summary task.",
  "type": "weighted_checklist",
  "checklist": [
    {
      "name": "pyexcel load",
      "description": "Uses pyexcel_xlsx.get_data (or pyexcel.get_data with the plugin) to read .xlsx/.xlsm sources, covering both file paths and in-memory bytes/streams without falling back to manual openpyxl parsing.",
      "max_score": 30
    },
    {
      "name": "Hidden toggle",
      "description": "Maps the include_hidden flag to the skip_hidden_sheets option when calling get_data so hidden sheets are omitted by default and included when requested.",
      "max_score": 25
    },
    {
      "name": "Stream format",
      "description": "Handles BytesIO/bytes inputs and stream outputs by passing file_content with an explicit file_type (xlsx or xlsm) to get_data/save_data so macro-enabled and regular workbooks are processed correctly without temp files.",
      "max_score": 20
    },
    {
      "name": "pyexcel save",
      "description": "Writes the summary workbook with pyexcel_xlsx.save_data (or pyexcel.save_data) using the sheet name and rows rather than constructing workbooks manually.",
      "max_score": 15
    },
    {
      "name": "Sheet order",
      "description": "Preserves sheet order from get_data’s ordered output when building the summary rows, ensuring the generated SheetSummary follows the source workbook ordering.",
      "max_score": 10
    }
  ]
}