streamlit-ace

Ace editor component for Streamlit.

MIT License

Downloads
30.6K
Stars
245
Committers
5

📝 Streamlit Ace

Installation

pip install streamlit-ace

Getting started

import streamlit as st

from streamlit_ace import st_ace

# Spawn a new Ace editor
content = st_ace()

# Display editor's content as you type
content

Demo