Navigate:
All Reposstreamlit
~$STREAM0.1%

Streamlit: Build interactive data apps in Python

Python framework for reactive data web applications.

LIVE RANKINGS • 06:51 AM • STEADY
OVERALL
#126
69
AI & ML
#56
24
30 DAY RANKING TREND
ovr#126
·AI#56
STARS
43.0K
FORKS
4.0K
DOWNLOADS
67
7D STARS
+31
7D FORKS
+7
Tags:
See Repo:
Share:

Learn more about streamlit

import streamlit as st\nst.title('Hello World')\nst.write('My first app')

streamlit

1

Script-based architecture

Streamlit apps are written as linear Python scripts rather than requiring a separate frontend framework or client-server architecture. The framework handles re-execution and state management automatically when users interact with widgets.

2

Live editing workflow

Changes to the Python script are reflected in the browser immediately through file watching and hot reloading. This allows developers to iterate on app logic and UI simultaneously without manual restart cycles.

3

Integrated deployment platform

Community Cloud provides a managed hosting option specifically designed for Streamlit apps, handling deployment, scaling, and sharing without requiring separate infrastructure configuration or DevOps setup.


import streamlit as st
import pandas as pd

st.title('Sales Dashboard')
st.write('Welcome to the dashboard')

data = pd.DataFrame({
    'product': ['A', 'B', 'C'],
    'sales': [100, 250, 175]
})
st.dataframe(data)

v1.51.0

Adds advanced layout controls (width/height) to chart APIs, custom dark theme support, and widget identity now uses `key` parameter for several components.

  • Set `width` and `height` on `st.plotly_chart`, `st.vega_lite_chart`, `st.altair_chart`, `st.pydeck_chart`, `st.map`, and built-in charts for precise sizing.
  • Configure custom dark themes via `theme.base` and light/dark sections; widgets like `st.slider`, `st.radio`, `st.color_picker` now use `key` as primary identity.
v1.50.0

Breaking: `key` now primary identity for most input widgets; `st.write` and `st.plotly_chart` drop `**kwargs` support.

  • Update code relying on widget identity by label—`st.checkbox`, `st.toggle`, `st.number_input`, `st.text_input`, `st.text_area`, `st.selectbox`, `st.multiselect`, `st.time_input`, `st.date_input`, and buttons now use `key` as main identity.
  • Replace `**kwargs` in `st.plotly_chart` with explicit `config` dict and remove any `**kwargs` passed to `st.write`.
v1.49.1

Release notes do not specify changes; this appears to be a maintenance patch with no documented breaking changes, fixes, or features.

  • Review the full changelog link if you need to understand what changed between 1.49.0 and 1.49.1.
  • No action required unless you encounter issues; consider this a routine patch update.


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers