An AI-native spreadsheet compiler. Upload any .xlsx — get back a structured, agent-readable workbook.
pip install osheetimport osheet
wb = osheet.load(open("model.xlsx", "rb").read())
print(wb.assumptions) # detected input cells
print(wb.outputs) # detected output metrics
result = wb.trace("metric.gross_margin") # upstream dependenciescd packages/osheet
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
pytestpackages/
osheet/ # Python library (the engine)
osheet-app/ # Web app (FastAPI + Next.js)
benchmarks/ # Baseline vs osheet accuracy comparison
docs/ # Specs and implementation plans