Skip to content

Getting Started

Prerequisites

  • Python 3.11+
  • pip

Installation

  1. Clone the repository:

    git clone https://github.com/ovesorg/emob-financial-models.git
    cd emob-financial-models
    

  2. Install Python dependencies:

    pip install -r requirements.txt
    

Building Documentation

# Clean rebuild
python -m mkdocs build --clean

# Serve locally
python -m mkdocs serve

Visit http://127.0.0.1:8000 to view the documentation.

Using Excel Utilities

Phase 1: Iterative Data Transformation

Use scripts/transform_data.py to apply iterative edits to your master workbook:

python scripts/transform_data.py input.xlsx output.xlsx --sheet Data

Phase 2: Generate Pretty Reports

Use scripts/generate_report.py to create formatted reports for stakeholders:

python scripts/generate_report.py data.xlsx report.xlsx

Next Steps