Streamlit is an open-source Python library that allows you to create beautiful data apps in just a few clicks. All you need is a Python script and a few lines of code. It will take care of the rest, including building the UI, connecting to your data, and deploying your app.
Installation 👇
Create your first app
- Create a .py file
- Import streamlit as st
- st.title("Your first streamlit app")
- In the command line enter $ streamlit run your_file_name.py
That's it boom you have built a streamlit app!
You can easily visualize, modify, and share data using Streamlit.
Here are some
- st.write("🎈") # Displays anything
- st.dataframe(data) # Display data as an interactive table
- st.metric() # Display metrics
Check out the API Reference
👉 docs.streamlit.io/library/api-reference
You can deploy, manage, and share your app directly from Streamlit for free.
Sign up at share.streamlit.io/signup
All you need to do is
- Sign in with Github or SSO
- Pick a repo, branch, and file
- Click Deploy!
Yep, that's it! You have deployed your app.