<!-- LLM_VERSION_INFO
FORMAT: text/markdown
CONTENT_TYPE: article
ORIGINAL_URL: https://streamlit.io/playground
ALTERNATE_VERSION: playground/index.html (text/html)
EXTRACTION_DATE: 2026-04-17T00:47:59.068Z

This is the markdown version with text-only content (images converted to alt-text).
For rich formatting with images, request the HTML version at: playground/index.html
-->

# Playground

Try out a limited version of Streamlit right in your browser.

Just edit the code below and the app on the right updates automatically.

For the real thing, [install our Python library](https://docs.streamlit.io/get-started/installation).

## Examples

- Blank
- Hello
- Charts
- Dataframes
- LLM chat
- Computer vision
- Geospatial

```python
import streamlit as st

st.title("Hello Streamlit-er 👋")

st.markdown(

"""

This is a playground for you to try Streamlit and have fun.

**There's :rainbow[so much] you can build!**

We prepared a few examples for you to get started. Just

click on the buttons above and discover what you can do

with Streamlit.

"""
)

if st.button("Send balloons!"):

st.balloons()
```
