Streamlit, a widely-used framework for building interactive Python applications, particularly for data visualization, dashboards, and machine learning demos, stands out not only for its user-friendly nature but also for its ability to create visually appealing and intuitive layouts. In this blog post, we’ll guide you through a Python example that demonstrates how to effectively utilize layout elements such as columns, containers, placeholders, and more in Streamlit.
Let’s break down the layout techniques you can use to make your apps cleaner and more interactive.
Before jumping into the layout elements, we configure the page using st.set_page_config(). This method allows you to customize the page title, icon, layout, and sidebar behavior right when the app loads.
st.set_page_config( page_title="Streamlit Layouts Tutorial", page_icon=":art:", layout="wide", initial_sidebar_state="collapsed", )
Here, we give the page a title, set the layout to "wide" (which makes use of the full browser width), and collapse the sidebar initially for a cleaner look.
One of the most powerful layout tools in Streamlit is columns. They allow you to display content side-by-side, giving a more organized and visually appealing look to your app.
st.header("Columns") st.write("Using `st.columns()` to create columns.") # Create two columns col1, col2 = st.columns(2) col1.write("This is column 1") if col1.button("Button in Column 1"): col1.write("Button 1 pressed") col2.write("This is column 2") if col2.button("Button in Column 2"): col2.write("Button 2 pressed")
In this snippet, we create two columns and place buttons in each. The columns are split evenly, and any interactions within one column don’t affect the other.
Columns are great for displaying related information side by side, such as data summaries, charts, or interactive controls.
Next up is the container element. Containers in Streamlit allow you to group multiple elements together, making it easier to manage complex layouts.
st.header("Container") st.write("Using `st.container()` to group elements together.") with st.container(): st.write("This is inside a container") st.button("Button inside container") # Nested container with st.container(): st.write("This is a nested container") st.button("Button inside nested container")
In this example, the st.container() method wraps multiple elements (text and a button) together. You can even nest containers inside one another to create hierarchical layouts.
Containers help maintain a clean and grouped structure, especially when dealing with multiple sections of content that belong together logically.
A powerful feature of Streamlit is its ability to update content dynamically. This is done using st.empty(), which serves as a placeholder that you can update later.
st.header("Empty") st.write("Using `st.empty()` as a placeholder for updating content.") placeholder = st.empty() # Update the placeholder content dynamically for i in range(5): placeholder.write(f"Updating... {i}") time.sleep(1) placeholder.write("Done!")
In this example, we use a for loop to update the placeholder with a new value every second. Once the loop is done, we replace the placeholder content with "Done!"
Placeholders are ideal for situations where you need to update parts of your app dynamically without rerunning the entire app, such as live data feeds or progress updates.
Expandable sections are perfect for hiding advanced settings or additional information that you don’t want to clutter the main layout.
st.set_page_config( page_title="Streamlit Layouts Tutorial", page_icon=":art:", layout="wide", initial_sidebar_state="collapsed", )
Here, we wrap some content and a button inside an expander, which users can click to reveal or hide the content.
Expanders help keep your interface clean by hiding less important or advanced options while still making them easily accessible when needed.
Streamlit forms allow you to group input widgets together and wait for the user to submit them all at once, rather than reacting to each input individually.
st.header("Columns") st.write("Using `st.columns()` to create columns.") # Create two columns col1, col2 = st.columns(2) col1.write("This is column 1") if col1.button("Button in Column 1"): col1.write("Button 1 pressed") col2.write("This is column 2") if col2.button("Button in Column 2"): col2.write("Button 2 pressed")
In this example, we use a form to collect a user’s name and age, and only once they click the submit button does Streamlit process the input.
Forms ensure that input actions are grouped and submitted as a batch, which is ideal for cases like user registration or data filtering.
Sidebars are useful for navigation, app settings, or extra options that don’t clutter the main interface.
st.header("Container") st.write("Using `st.container()` to group elements together.") with st.container(): st.write("This is inside a container") st.button("Button inside container") # Nested container with st.container(): st.write("This is a nested container") st.button("Button inside nested container")
This code adds a button to the sidebar, which collapses by default but can be expanded by the user.
Sidebars are perfect for secondary content like navigation links, filters, or app settings that are always accessible but don’t need to take up space in the main layout.
Tabs are a great way to organize content within a single section, allowing users to switch between different views without leaving the page.
st.header("Empty") st.write("Using `st.empty()` as a placeholder for updating content.") placeholder = st.empty() # Update the placeholder content dynamically for i in range(5): placeholder.write(f"Updating... {i}") time.sleep(1) placeholder.write("Done!")
In this example, we use three tabs to display different content related to animals. Each tab is independent and contains its own content.
Tabs are ideal for organizing related content into sections, like different data views or categories of information, without requiring separate pages.
Mastering Streamlit's layout elements empowers you to create clean, interactive, and user-friendly applications. By skillfully using columns, containers, placeholders, expanders, forms, sidebars, and tabs, you can effectively organize your content and enhance the overall user experience. These tools allow you to craft intuitive interfaces that guide users through your application seamlessly.
? Get the Code: GitHub - jamesbmour/blog_tutorials
? Related Streamlit Tutorials:JustCodeIt
? Support my work: Buy Me a Coffee
The above is the detailed content of Streamlit Part Mastering Layouts. For more information, please follow other related articles on the PHP Chinese website!