Skip to main content

Tool allowing to stack streamlit commands and resolve them in a controlable manner.

Project description

streamlit_stacker

streamlit_stacker is a python package implementing a main st_stacker class. This class can be used with similar syntax as the streamlit module but the attribute calls will be stacked in a list (the stack) instead of being resolved. A simple call to the refresh() method will deal with rendering (=actually execute the corresponding streamlit commands of) the whole stack on demand.

Populating a stack with attribute calls, context mangers and callbacks thus becomes similar to setting up a gui layout in an object oriented manner.

On top of being added to the stack, all st_stacker attribute calls will return one or several st_output objects. These are meant to be placeholder objects anticipating the reception of actual outputs returned by streamlit attribute calls when they will get executed.

The .value property will get actualized in real time as soon as the corresponding streamlit widgets have a non-empty state.

This module is very useful to implement stateful and/or dynamic execution of streamlit commands in an interactive web interface.

It is meant to support all streamlit commands and syntaxes allowed by the streamlit module. If not, feel free to report an issue, we'll work on it :).

Installation

$ pip install streamlit-stacker

Usage

import streamlit as st
from streamlit_stacker import st_stacker

#shortcut
state=st.session_state

#define the stacker in state
if not 'stacker' in state:
    state.stacker=st_stacker()
stk=state.stacker

#resets all commands in the stacker to a non-rendered state, so that the next call to refresh will render them again
stk.reset()

if not 'test' in state:
    #stack a chat message and a button in a container, won't be rendered immediately
    state.c=stk.container()
    with state.c:
        with stk.chat_message(name='user'):
            stk.write("Hello!")
            
    #callback to add a new message when the button is clicked
    def on_click():
        with state.c:
            with stk.chat_message(name='user'):
                stk.write("Hello again!")

    stk.button("click me!",on_click=on_click)
    state.test=True

#render the stack: the chat message and the button will appear on screen on every rerun, even though the corresponding commands have been called only once at first run
#every click on the button will add another chat message to the container
stk.refresh()

License

This project is licensed. Please see the LICENSE file for more details.

Contributions

Contributions are welcome. Please open an issue or a pull request to suggest changes or additions.

Contact

For any questions or support requests, please contact Baptiste Ferrand at the following address: bferrand.maths@gmail.com.

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_stacker-0.0.3.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

streamlit_stacker-0.0.3-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file streamlit_stacker-0.0.3.tar.gz.

File metadata

  • Download URL: streamlit_stacker-0.0.3.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for streamlit_stacker-0.0.3.tar.gz
Algorithm Hash digest
SHA256 9c6313fa1d12c91a76c627a238f99c197c5db063fdb8f8b4f3dc6cbfd72e370b
MD5 b1889e2cd5c9eddb90588fcafc0e8abb
BLAKE2b-256 4c261163ecb039bcbf9ddd819db549c395ac117e195eaf95eadd0c4e45d47bf7

See more details on using hashes here.

File details

Details for the file streamlit_stacker-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for streamlit_stacker-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 a9d49aa1e0505609011fe4d973f1d9e708ce7dac82394428a44b74342b2fd187
MD5 86430248902ed190bccba26a9d9c99f7
BLAKE2b-256 25348a54c971b5d627c8fb1b7ca8b80b290b40d49af880836d05b9806c426755

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