Streamlit parameter management for page configuration
Project description
Streamlit Parameters
About
Weave in interaction...
This is one of streamlit's strengths, but it does create a challenge, namely "How do I share my application view after I've interacted with it?".
Streamlit provides the machinery that make this possible - input widget configuration, session state and access to the URL query string so that at the end of the day, it merely requires copy-pasting an automagically modified URL string to share your view. However, wiring these disparate parts together can be a non-trivial exercise.
This package endeavours to simplify that exercise for the app developer.
Overview
The basic premise is to reduce your view to a few unique parameters that can both be used to directly reproduce your current view in another user's streamlit session.
- Parameters representative of your view typically come from input widgets
- Initial and current values need to be preserved in the session state to be always available
- Getting and setting the URL query string requires shims for type ⇔ string conversions
This package hides the complexity of interactions with both the session state and url query string behind a convenient interface that focuses on what is important - those unique parameters representative of the state of your view.
Demo
https://share.streamlit.io/stonier/streamlit_parameters/devel/demo.py
Usage
- register a parameter
- use the parameter default for the widget default
- add a matching key to a widget
- add an on_change hook to the widget.
- set url fields
- put on your peril-sensitive sunglasses and be froody!
parameters = streamlit_parameters.parameters.Parameters()
parameters.register_date_parameter(key="start_date", default_value=seven_days_ago) # <-- 1
streamlit.sidebar.date_input(
...,
value=parameters.start_date.default, # <-- 2
key="start_date", # <-- 3
on_change=functools.partial( # <-- 4
parameters.update_parameter_from_session_state,
key="start_date"
)
)
parameters.set_url_fields() # <-- 5 (sets all fields in one batch call)
streamlit.write("**Start Date**: {parameters.start_date.value}") # <-- 6
Types
Supported parameter types include:
boolintfloatdatestringpair[int]pair[float]pair[date]list[string]list[bool]
Pairs work well with slider widgets that specify ranges of values. Lists with, e.g. multiselects. See the demo for a reference example.
Modes
In general, there are two modes to support - partial or full embedding of parameters in the URL query string.
- partial - only set url query string fields if the parameter has been modified
- full - set url query string fields for all parameters
Suppose you have an application with an end_date parameter which has a default that
is programmatically determined on the first time the app is loaded
(e.g. datetime.date.today()). Today that might return 11-02-2021, tomorrow 11-03-2021.
Now suppose you want to copy the url for someone today and they will receive the email in the morning tomorrow. A question arises:
-
Do you want them to experience exactly what you experienced? In this case, you never overrode that variable and you wish them to have that same experience, i.e. you want them to see the latest view of that dashboard too -> you don't want to have the end_date in the URL string.
-
Do you want them to see exactly what you saw? In this case, you need to capture a snapshot of every single parameter -> all parameters must go to the URL string.
This class provides a toggle for the user to choose their mode of operation. It can
either be accessed directly via the streamlit session state
(session_state._parameters_set_all) or toggleable via a checkbox, e.g.:
parameters = streamlit_parameters.parameters.Parameters()
with streamlit.sidebar:
parameters.create_set_all_checkbox()
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file streamlit_parameters-0.2.0.tar.gz.
File metadata
- Download URL: streamlit_parameters-0.2.0.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.15 Linux/6.8.0-49-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9c84f2bf4fe354d60ddf5007d2b91bf40c067be3521119bc045851d3b403885
|
|
| MD5 |
6d4f14bfb83f7d0ca486f4b54d499875
|
|
| BLAKE2b-256 |
4cd1d59a9438de74808ca148826e0cbdd49c51f0260225dcea8774c0be52e66b
|
File details
Details for the file streamlit_parameters-0.2.0-py3-none-any.whl.
File metadata
- Download URL: streamlit_parameters-0.2.0-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.15 Linux/6.8.0-49-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d86179e737782214ca8028491518cddf59925cd1f44306933744c324ff3dc24d
|
|
| MD5 |
debffcc1b93aadc62fe35fac102dbc4a
|
|
| BLAKE2b-256 |
1b1ae6634203e22b11ce6641eb7e50bda87ff8752ba586dd8ddbab5f240f6ffc
|