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
Built Distribution
File details
Details for the file streamlit_stacker-0.0.6.tar.gz
.
File metadata
- Download URL: streamlit_stacker-0.0.6.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 436b39efff9de180cd342569985065abcc9ac6b0190d327f75c2f51c832de107 |
|
MD5 | 98c6b0b720144cc4057d116aae03cb33 |
|
BLAKE2b-256 | dd3058690736beab3e7fd3a913ff92be3a1f82460194aaac5437bea1f85cd6c3 |
File details
Details for the file streamlit_stacker-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: streamlit_stacker-0.0.6-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2d075b911ae647719b1fb4beecb9bded5fd56aaa3c2527c97a59700591bf5e9 |
|
MD5 | 16cab77e311bb0c7d65c1d258fa3f348 |
|
BLAKE2b-256 | ae4d02b819aa4ab03f89be8b3b9bd38d1d23c2e673e9bd7dfa3b66f5898eda3e |