Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/okld/streamlit-ace
Ace editor component for Streamlit.
https://github.com/okld/streamlit-ace
ace ace-editor demo editor python streamlit streamlit-ace streamlit-component
Last synced: about 1 month ago
JSON representation
Ace editor component for Streamlit.
- Host: GitHub
- URL: https://github.com/okld/streamlit-ace
- Owner: okld
- License: mit
- Created: 2020-06-20T19:35:29.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-16T22:02:14.000Z (11 months ago)
- Last Synced: 2024-09-27T22:02:14.746Z (about 2 months ago)
- Topics: ace, ace-editor, demo, editor, python, streamlit, streamlit-ace, streamlit-component
- Language: Python
- Homepage: https://share.streamlit.io/okld/streamlit-gallery/main?p=ace-editor
- Size: 3.38 MB
- Stars: 245
- Watchers: 3
- Forks: 36
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📝 Streamlit Ace
[![GitHub][github_badge]][github_link] [![PyPI][pypi_badge]][pypi_link]
## Installation
```sh
pip install streamlit-ace
```## Getting started
```python
import streamlit as stfrom streamlit_ace import st_ace
# Spawn a new Ace editor
content = st_ace()# Display editor's content as you type
content
```## Demo
[![Open in Streamlit][share_badge]][share_link]
[![Preview][share_img]][share_link]
[share_badge]: https://static.streamlit.io/badges/streamlit_badge_black_white.svg
[share_link]: https://share.streamlit.io/okld/streamlit-gallery/main?p=ace-editor
[share_img]: https://raw.githubusercontent.com/okld/streamlit-ace/main/preview.png[github_badge]: https://badgen.net/badge/icon/GitHub?icon=github&color=black&label
[github_link]: https://github.com/okld/streamlit-ace[pypi_badge]: https://badgen.net/pypi/v/streamlit-ace?icon=pypi&color=black&label
[pypi_link]: https://pypi.org/project/streamlit-ace