streamlit-app

Installation
SKILL.md

Streamlit Apps in Wizard

Apps live in apps/wizard/app_pages/. Run with make wizard or .venv/bin/etlwiz <alias>.

Creating a New App

  1. Create apps/wizard/app_pages/your_app/app.py:
import streamlit as st
st.set_page_config(page_title="Wizard: Your App", page_icon="🪄", layout="wide")

def main():
    st.title("Your App")

main()
  1. Register in apps/wizard/config/config.yml under a section's apps list:
Related skills
Installs
49
Repository
owid/etl
GitHub Stars
145
First Seen
Feb 16, 2026