Glossary

apps are scripts

is the key insight for understanding how Streamlit works. A Streamlit app is not a traditional web application with event handlers and component lifecycles. It is a Python script that re-runs from top to bottom on every interaction. Widgets return their current values as Python objects; the script r

Learn More

Related Terms