Quickstart
1. Create a YAML (.yaml)
.yaml)script_name: "Excel Invoice Merger"
script_description: |
Merge multiple Excel invoice files into a single consolidated report,
summarising totals and highlighting discrepancies.
python_version: "3.12"
dependencies:
- pandas==2.2.2
- openpyxl==3.1.2
inputs:
- arg: input_file
title: Upload Excel File
required: true
type: file
extensions: [xlsx, xls]
- arg: simple_text
title: Label
type: text
placeholder: "Experiment 42"
- arg: environment
title: Environment
type: dropdown
required: true
options:
- value: dev
label: Development
- value: staging
label: Staging
- value: prod
label: Production
- arg: accept_terms
title: Save to database
type: checkbox2. Write Your Script
✅ Supported Python Versions
3. Hit ▶ Run
Last updated