Skip to main content

A little streamlit wizard

Project description

streamlit-wizard

This is an example of creating a wizard within Streamlit.

To use it, create your page objects by inheriting from the Page class in components, and pass the resulting pages into the Wizard class as illustrated in main.py.

Styling

Some custom CSS styling is used for the container. You can fiddle with it in static/style.css

State

Streamlit session state is used to store the current page and to move data between pages. See example_pages.py for an example of how you can retrieve data stored on previous pages. I've not thought this pattern through very deeply, please let me know if there's a better way of doing it - obviously handling state in nested components in complex, see Redux.

Running

pip install -r requirements.txt
streamlit run main.py

Example Usage

from streamlit_wizard import components

class IntroPage(Page):
    def render(self) -> dict:
        st.title("Intro")
        st.write("This is the intro page")
        accept = st.radio(
            "Do you understand that",
            options=["Yes", "No", "Can you repeat the question"],
        )
        return dict(accept=accept)


class FirstPageOfQuestions(Page):
    def render(self) -> dict:
        st.title("Question Page")
        st.write("We will have some questions here")

        # We can access the other page state via session storage if we know what it is called
        # This is presumably not a very robust solution

        did_they_accept = st.session_state["page_state"]["intro"]["accept"]
        st.write(f"On the previous page you selected {did_they_accept}")
        fave_bean = st.selectbox(
            "What is your favourite jelly bean colour", ["Red", "Orange", "Green"]
        )
        return dict(fave_bean=fave_bean)


intro = example_pages.IntroPage(name="intro")
data = example_pages.FirstPageOfQuestions(name="questions")

wizard = components.Wizard(pages=[intro, data])

wizard.render()

Publishing

python3 -m build && python3 -m twine upload dist/*

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

streamlit_wizard-0.0.4.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

streamlit_wizard-0.0.4-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file streamlit_wizard-0.0.4.tar.gz.

File metadata

  • Download URL: streamlit_wizard-0.0.4.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.4

File hashes

Hashes for streamlit_wizard-0.0.4.tar.gz
Algorithm Hash digest
SHA256 decbada200f562e39f05c4c17b5837a76f3fae0e3ffd5b2b93f2bd3732c781db
MD5 07c4d50e268b2dcc9f8ac9fc3956d2a2
BLAKE2b-256 0f63b9098f1e03cf73c934cd0bbb0df15e21812bbd468793cb8b31aa337de23b

See more details on using hashes here.

File details

Details for the file streamlit_wizard-0.0.4-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_wizard-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 eb4a9c675c48b05fd655e30f7d8152ddec5868d09a939704cc64bc24ac4417b1
MD5 5185727514baec04d872d3d5c796eb08
BLAKE2b-256 3728bf50f2457f9c5621cb49d4c2721b12b81de83026aaf12091a8938d446fae

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page