streamlit-nightly 1.33.1.dev20240429__py2.py3-none-any.whl → 1.33.1.dev20240501__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamlit/commands/page_config.py +34 -6
- streamlit/connections/sql_connection.py +2 -0
- streamlit/elements/alert.py +64 -20
- streamlit/elements/dialog_decorator.py +56 -31
- streamlit/elements/empty.py +3 -3
- streamlit/elements/form.py +2 -2
- streamlit/elements/heading.py +9 -3
- streamlit/elements/layouts.py +31 -23
- streamlit/elements/lib/column_types.py +3 -1
- streamlit/elements/markdown.py +8 -4
- streamlit/elements/media.py +12 -12
- streamlit/elements/metric.py +3 -1
- streamlit/elements/progress.py +3 -1
- streamlit/elements/toast.py +20 -6
- streamlit/elements/widgets/button.py +22 -14
- streamlit/elements/widgets/camera_input.py +3 -1
- streamlit/elements/widgets/chat.py +26 -9
- streamlit/elements/widgets/checkbox.py +10 -6
- streamlit/elements/widgets/color_picker.py +5 -3
- streamlit/elements/widgets/file_uploader.py +4 -2
- streamlit/elements/widgets/multiselect.py +7 -5
- streamlit/elements/widgets/number_input.py +6 -4
- streamlit/elements/widgets/radio.py +6 -4
- streamlit/elements/widgets/select_slider.py +10 -8
- streamlit/elements/widgets/selectbox.py +8 -6
- streamlit/elements/widgets/slider.py +11 -9
- streamlit/elements/widgets/text_widgets.py +9 -5
- streamlit/elements/widgets/time_widgets.py +13 -9
- streamlit/runtime/caching/cache_utils.py +34 -3
- streamlit/runtime/state/query_params_proxy.py +23 -13
- {streamlit_nightly-1.33.1.dev20240429.dist-info → streamlit_nightly-1.33.1.dev20240501.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.33.1.dev20240429.dist-info → streamlit_nightly-1.33.1.dev20240501.dist-info}/RECORD +36 -36
- {streamlit_nightly-1.33.1.dev20240429.data → streamlit_nightly-1.33.1.dev20240501.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.33.1.dev20240429.dist-info → streamlit_nightly-1.33.1.dev20240501.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.33.1.dev20240429.dist-info → streamlit_nightly-1.33.1.dev20240501.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.33.1.dev20240429.dist-info → streamlit_nightly-1.33.1.dev20240501.dist-info}/top_level.txt +0 -0
@@ -323,8 +323,10 @@ class TimeWidgetsMixin:
|
|
323
323
|
|
324
324
|
* Colored text and background colors for text, using the syntax
|
325
325
|
``:color[text to be colored]`` and ``:color-background[text to be colored]``,
|
326
|
-
respectively
|
326
|
+
respectively. ``color`` must be replaced with any of the following
|
327
327
|
supported colors: blue, green, orange, red, violet, gray/grey, rainbow.
|
328
|
+
For example, you can use ``:orange[your text here]`` or
|
329
|
+
``:blue-background[your text here]``.
|
328
330
|
|
329
331
|
Unsupported elements are unwrapped so only their children (text contents) render.
|
330
332
|
Display unsupported elements as literal characters by
|
@@ -374,8 +376,8 @@ class TimeWidgetsMixin:
|
|
374
376
|
>>> import datetime
|
375
377
|
>>> import streamlit as st
|
376
378
|
>>>
|
377
|
-
>>> t = st.time_input(
|
378
|
-
>>> st.write(
|
379
|
+
>>> t = st.time_input("Set an alarm for", datetime.time(8, 45))
|
380
|
+
>>> st.write("Alarm is set for", t)
|
379
381
|
|
380
382
|
.. output::
|
381
383
|
https://doc-time-input.streamlit.app/
|
@@ -386,8 +388,8 @@ class TimeWidgetsMixin:
|
|
386
388
|
>>> import datetime
|
387
389
|
>>> import streamlit as st
|
388
390
|
>>>
|
389
|
-
>>> t = st.time_input(
|
390
|
-
>>> st.write(
|
391
|
+
>>> t = st.time_input("Set an alarm for", value=None)
|
392
|
+
>>> st.write("Alarm is set for", t)
|
391
393
|
|
392
394
|
.. output::
|
393
395
|
https://doc-time-input-empty.streamlit.app/
|
@@ -548,8 +550,10 @@ class TimeWidgetsMixin:
|
|
548
550
|
|
549
551
|
* Colored text and background colors for text, using the syntax
|
550
552
|
``:color[text to be colored]`` and ``:color-background[text to be colored]``,
|
551
|
-
respectively
|
553
|
+
respectively. ``color`` must be replaced with any of the following
|
552
554
|
supported colors: blue, green, orange, red, violet, gray/grey, rainbow.
|
555
|
+
For example, you can use ``:orange[your text here]`` or
|
556
|
+
``:blue-background[your text here]``.
|
553
557
|
|
554
558
|
Unsupported elements are unwrapped so only their children (text contents) render.
|
555
559
|
Display unsupported elements as literal characters by
|
@@ -585,7 +589,7 @@ class TimeWidgetsMixin:
|
|
585
589
|
An optional dict of kwargs to pass to the callback.
|
586
590
|
format : str
|
587
591
|
A format string controlling how the interface should display dates.
|
588
|
-
Supports
|
592
|
+
Supports "YYYY/MM/DD" (default), "DD/MM/YYYY", or "MM/DD/YYYY".
|
589
593
|
You may also use a period (.) or hyphen (-) as separators.
|
590
594
|
disabled : bool
|
591
595
|
An optional boolean, which disables the date input if set to True.
|
@@ -609,7 +613,7 @@ class TimeWidgetsMixin:
|
|
609
613
|
>>> import streamlit as st
|
610
614
|
>>>
|
611
615
|
>>> d = st.date_input("When's your birthday", datetime.date(2019, 7, 6))
|
612
|
-
>>> st.write(
|
616
|
+
>>> st.write("Your birthday is:", d)
|
613
617
|
|
614
618
|
.. output::
|
615
619
|
https://doc-date-input.streamlit.app/
|
@@ -642,7 +646,7 @@ class TimeWidgetsMixin:
|
|
642
646
|
>>> import streamlit as st
|
643
647
|
>>>
|
644
648
|
>>> d = st.date_input("When's your birthday", value=None)
|
645
|
-
>>> st.write(
|
649
|
+
>>> st.write("Your birthday is:", d)
|
646
650
|
|
647
651
|
.. output::
|
648
652
|
https://doc-date-input-empty.streamlit.app/
|
@@ -304,9 +304,40 @@ class CachedFunc:
|
|
304
304
|
)
|
305
305
|
|
306
306
|
def clear(self, *args, **kwargs):
|
307
|
-
"""Clear the
|
308
|
-
|
309
|
-
If
|
307
|
+
"""Clear the cached function's associated cache.
|
308
|
+
|
309
|
+
If no arguments are passed, Streamlit will clear all values cached for
|
310
|
+
the function. If arguments are passed, Streamlit will clear the cached
|
311
|
+
value for these arguments only.
|
312
|
+
|
313
|
+
Parameters
|
314
|
+
----------
|
315
|
+
*args: Any
|
316
|
+
Arguments of the cached functions.
|
317
|
+
**kwargs: Any
|
318
|
+
Keyword arguments of the cached function.
|
319
|
+
|
320
|
+
Example
|
321
|
+
-------
|
322
|
+
>>> import streamlit as st
|
323
|
+
>>> import time
|
324
|
+
>>>
|
325
|
+
>>> @st.cache_data
|
326
|
+
>>> def foo(bar):
|
327
|
+
>>> time.sleep(2)
|
328
|
+
>>> st.write(f"Executed foo({bar}).")
|
329
|
+
>>> return bar
|
330
|
+
>>>
|
331
|
+
>>> if st.button("Clear all cached values for `foo`", on_click=foo.clear):
|
332
|
+
>>> foo.clear()
|
333
|
+
>>>
|
334
|
+
>>> if st.button("Clear the cached value of `foo(1)`"):
|
335
|
+
>>> foo.clear(1)
|
336
|
+
>>>
|
337
|
+
>>> foo(1)
|
338
|
+
>>> foo(2)
|
339
|
+
|
340
|
+
"""
|
310
341
|
cache = self._info.get_function_cache(self._function_key)
|
311
342
|
if args or kwargs:
|
312
343
|
key = _make_value_key(
|
@@ -171,26 +171,36 @@ class QueryParamsProxy(MutableMapping[str, str]):
|
|
171
171
|
...
|
172
172
|
|
173
173
|
@gather_metrics("query_params.from_dict")
|
174
|
-
def from_dict(self,
|
174
|
+
def from_dict(self, params):
|
175
175
|
"""
|
176
176
|
Set all of the query parameters from a dictionary or dictionary-like object.
|
177
177
|
|
178
|
-
This method primarily exists for advanced users who want to
|
179
|
-
multiple query
|
180
|
-
|
181
|
-
or `st.query_params.parameter = "value"`.
|
178
|
+
This method primarily exists for advanced users who want to control
|
179
|
+
multiple query parameters in a single update. To set individual query
|
180
|
+
parameters, use key or attribute notation instead.
|
182
181
|
|
183
|
-
|
184
|
-
`
|
182
|
+
This method inherits limitations from ``st.query_params`` and can't be
|
183
|
+
used to set embedding options as described in `Embed your app \
|
184
|
+
<https://docs.streamlit.io/deploy/streamlit-community-cloud/share-your-app/embed-your-app#embed-options>`_.
|
185
185
|
|
186
|
-
|
187
|
-
|
188
|
-
|
186
|
+
To handle repeated keys, the value in a key-value pair should be a list.
|
187
|
+
|
188
|
+
.. note::
|
189
|
+
``.from_dict()`` is not a direct inverse of ``.to_dict()`` if
|
190
|
+
you are working with repeated keys. A true inverse operation is
|
191
|
+
``{key: st.query_params.get_all(key) for key st.query_params}``.
|
189
192
|
|
190
193
|
Parameters
|
194
|
+
----------
|
195
|
+
params: dict
|
196
|
+
A dictionary used to replace the current query parameters.
|
197
|
+
|
198
|
+
Example
|
191
199
|
-------
|
192
|
-
|
193
|
-
|
200
|
+
>>> import streamlit as st
|
201
|
+
>>>
|
202
|
+
>>> st.query_params.from_dict({"foo": "bar", "baz": [1, "two"]})
|
203
|
+
|
194
204
|
"""
|
195
205
|
with get_session_state().query_params() as qp:
|
196
|
-
return qp.from_dict(
|
206
|
+
return qp.from_dict(params)
|
@@ -39,7 +39,7 @@ streamlit/version.py,sha256=pXGa4A8rovFisSPMpfTkw8U85VIhnxriooj6bHVjTfY,3478
|
|
39
39
|
streamlit/commands/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
40
40
|
streamlit/commands/execution_control.py,sha256=YBaX8ikORIJEmlvWKNqTDhDnhz_PPxqAGn4P2FcWVtk,5429
|
41
41
|
streamlit/commands/experimental_query_params.py,sha256=hMWuWJPIlebWhlEZbrwPSLtAfSx3gSke8_nU39-EKIc,5042
|
42
|
-
streamlit/commands/page_config.py,sha256=
|
42
|
+
streamlit/commands/page_config.py,sha256=FJXZ4MvNlgeVC3QUmE9vagHSfTvHaXoBxuXTuJrVSog,12997
|
43
43
|
streamlit/components/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
44
44
|
streamlit/components/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
45
45
|
streamlit/components/lib/local_component_registry.py,sha256=qEfGGHH5gFneZBt_oeHuA1T9DFVXRiNwNqJGdCGuzIo,2978
|
@@ -55,10 +55,10 @@ streamlit/connections/__init__.py,sha256=WSOEtrwhiNYti89iCk3O7I83rurZl8gXoM8tA2d
|
|
55
55
|
streamlit/connections/base_connection.py,sha256=8rzoGovDem0o3FzJTikP0IRdL7i3lBqHhyESBnER9no,7465
|
56
56
|
streamlit/connections/snowflake_connection.py,sha256=z8yUWzHnoDOriydUc6KbDQStI5emvmqkEUtGf0c-AFc,12517
|
57
57
|
streamlit/connections/snowpark_connection.py,sha256=eoOfCTCI6BMByN9lZn42Z_c7Z3dLGYZZLmM8ouhj-ig,8184
|
58
|
-
streamlit/connections/sql_connection.py,sha256=
|
58
|
+
streamlit/connections/sql_connection.py,sha256=Doi_bshOqNBhR7m42bvE6EPtUaLFBqaPRiaI4i-xVyU,12234
|
59
59
|
streamlit/connections/util.py,sha256=3Ryc93a5KstsVwQl6ug5cmb8F-WQoD4c0mBWNPLoFsY,3022
|
60
60
|
streamlit/elements/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
61
|
-
streamlit/elements/alert.py,sha256=
|
61
|
+
streamlit/elements/alert.py,sha256=nf_Pyr6s7ms8DNDp21__qSsZUddul_mHuXUR7e6rCZk,7432
|
62
62
|
streamlit/elements/altair_utils.py,sha256=dYDP5CiZp7DX3gNX6hXaGw5fgVKuWB4yLTfTVprp8bI,1222
|
63
63
|
streamlit/elements/arrow.py,sha256=TlQ5oa-14zLOKKJ2wXUgiaUgT6PBv0Z3rKpM0YKA3Wg,14558
|
64
64
|
streamlit/elements/arrow_altair.py,sha256=CXUKBQTkVjTimK9zYfxiKAh2GmDNRQQftSdLm5pSgZ8,57049
|
@@ -67,34 +67,34 @@ streamlit/elements/balloons.py,sha256=QnORgG96Opga1SVg8tUBOm-l3nMpKWmjvy1crcS2Xa
|
|
67
67
|
streamlit/elements/bokeh_chart.py,sha256=4Py_NZaxU22iR6WIvE8fxv3wnJqRRMIvouIiMA7EOqA,3916
|
68
68
|
streamlit/elements/code.py,sha256=zltCajNi2DTPev4w19bdCoq_AJkWs9wRxnn4WEci6qM,2476
|
69
69
|
streamlit/elements/deck_gl_json_chart.py,sha256=XtX-5nPJw0b1AIgvhXbvtpVjmnmo_F6rvYMfZY9K-is,6429
|
70
|
-
streamlit/elements/dialog_decorator.py,sha256=
|
70
|
+
streamlit/elements/dialog_decorator.py,sha256=rTyh11A5LGQGKtHqVSBHavSkPWmL1GwnryyRqb1v_Uo,8039
|
71
71
|
streamlit/elements/doc_string.py,sha256=f8dXHGNw71VnNkQZvCcvT6Jl5fXezMEcVyd2UW6YAWQ,16168
|
72
|
-
streamlit/elements/empty.py,sha256=
|
72
|
+
streamlit/elements/empty.py,sha256=R54uWPTmMPcoT6lXg9bsVjLkQkRmneV1VBjpZylB-_U,3824
|
73
73
|
streamlit/elements/exception.py,sha256=E9D_GugKrV1qNsrBlycLTT7aFmazzWYfBlOsRYBq9Z8,9121
|
74
|
-
streamlit/elements/form.py,sha256=
|
74
|
+
streamlit/elements/form.py,sha256=V4RqwdbRhHyKT5T1uWHerGvTeNvQkCURsjrPUMSq3dw,12072
|
75
75
|
streamlit/elements/graphviz_chart.py,sha256=4MSPLdVoaWXm6-frpGwgtwjpVjxN2LuPMFiUgh3eAg8,4557
|
76
|
-
streamlit/elements/heading.py,sha256=
|
76
|
+
streamlit/elements/heading.py,sha256=1K5gTWogYN0ytdHY3UE0gR2wimV963kCrAAbagvTiJI,11268
|
77
77
|
streamlit/elements/html.py,sha256=YI0D_pNPAFaq6nx04vadb1JD_aADbmNgNQRvPUp-x7w,2810
|
78
78
|
streamlit/elements/iframe.py,sha256=xY34YwgC_kTwRaEw1bvOJj0iQLvnpo8wGvUPSSkpmug,4383
|
79
79
|
streamlit/elements/image.py,sha256=65emF1tG3-Ni9w30LvYWxhIMUY22uHwV3OfjB7R3V9E,20394
|
80
80
|
streamlit/elements/json.py,sha256=d1PHLaHDsrgQEv__KspWvwIvcufru_v5L871qEPStWM,3365
|
81
|
-
streamlit/elements/layouts.py,sha256=
|
81
|
+
streamlit/elements/layouts.py,sha256=YJ-4Aizf_DPgvNeGYNDXiyOL9KkPQ_j5uXCaghXDxNI,28251
|
82
82
|
streamlit/elements/map.py,sha256=0zwVCZ9FjPUiCk5XfVe7vKg6UiLDbBLUkrHgnJz_Rr0,16299
|
83
|
-
streamlit/elements/markdown.py,sha256=
|
84
|
-
streamlit/elements/media.py,sha256=
|
85
|
-
streamlit/elements/metric.py,sha256=
|
83
|
+
streamlit/elements/markdown.py,sha256=gL_6MVMTysJFm_aHLimyJVj6BmGdhuGRnemvbzcquAc,10384
|
84
|
+
streamlit/elements/media.py,sha256=ITHQYPWi2f8lxTv7D6HgH7GehafKkIBxv85BQWApKLg,29678
|
85
|
+
streamlit/elements/metric.py,sha256=hmfjlZY-FVNrjkfRW_Lz--hgFNxNpePqBHDeslQ6b-c,10114
|
86
86
|
streamlit/elements/plotly_chart.py,sha256=ymuSs0jwehWtmZ9LCr2KuTZiZhmQaSGpAiDyXZP-KFY,15332
|
87
|
-
streamlit/elements/progress.py,sha256=
|
87
|
+
streamlit/elements/progress.py,sha256=7PbyifyZ4vqYijBonXWLsujST3mVaKVyMaYvP3yinEk,5844
|
88
88
|
streamlit/elements/pyplot.py,sha256=TdYPt2K5tOCTO0OiLzN7LEBuy2ty_6SKXfGzmzFQNYw,6441
|
89
89
|
streamlit/elements/snow.py,sha256=WHqk8zmfOr5iD0R-wLlAdlIkDDbiaayguTVmA4e7V_Q,1439
|
90
90
|
streamlit/elements/spinner.py,sha256=ZMJlO-J77lpQZbRPvqJ80ur9u11dBUwJr6JgDct8TLY,2934
|
91
91
|
streamlit/elements/text.py,sha256=-g2LYiJpP2OAdllpd7Df9rhTehIOEuiZN7-u1jwKEio,1856
|
92
|
-
streamlit/elements/toast.py,sha256=
|
92
|
+
streamlit/elements/toast.py,sha256=pqA14fzEE9rJM4rBgUpXPsu6AeX3XyC5LCHBxXYHQvk,4336
|
93
93
|
streamlit/elements/utils.py,sha256=E4jQojL-QNnUJe6Ktlxz3mXPRgtjgEq902DCYjWePrA,8458
|
94
94
|
streamlit/elements/write.py,sha256=XYR20zqRcDJ8BQVE3s4mrY6gyWatr9ikXfkFqAod900,20804
|
95
95
|
streamlit/elements/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
96
96
|
streamlit/elements/lib/column_config_utils.py,sha256=zkm0bY2dYFIhnnIpjZB2nAO9FM7waaSiDKUrSjYXtPU,17226
|
97
|
-
streamlit/elements/lib/column_types.py,sha256=
|
97
|
+
streamlit/elements/lib/column_types.py,sha256=DkSw7CyFKjjjC_cqBNwNFr15C2oyGILOYBshp3-lCCo,51174
|
98
98
|
streamlit/elements/lib/dialog.py,sha256=IflTt5K7iWJPao689D-zXmKK5gd4FwEvtqRBqjOa4ug,5685
|
99
99
|
streamlit/elements/lib/dicttools.py,sha256=NC0mMAu1vixFmth-SNLDbaLJ8A02v6AuU1GjJNR8Ydo,3839
|
100
100
|
streamlit/elements/lib/event_utils.py,sha256=wJaZxBH-x9icnWmDuO9ukIQhHek9T2rcxlrD7UVzmvk,1496
|
@@ -103,21 +103,21 @@ streamlit/elements/lib/pandas_styler_utils.py,sha256=KXaslcPlLdIVk6GgMILHqYc2AY3
|
|
103
103
|
streamlit/elements/lib/streamlit_plotly_theme.py,sha256=DgMP_PWTfFO5J__q8bGxoT3ey5z727582wDD_u3UaPU,8307
|
104
104
|
streamlit/elements/lib/subtitle_utils.py,sha256=eYfsTAKub-55nx0kik9T6nJ8dTyeUazPbMNfkIP-BNg,6246
|
105
105
|
streamlit/elements/widgets/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
106
|
-
streamlit/elements/widgets/button.py,sha256=
|
107
|
-
streamlit/elements/widgets/camera_input.py,sha256=
|
108
|
-
streamlit/elements/widgets/chat.py,sha256=
|
109
|
-
streamlit/elements/widgets/checkbox.py,sha256=
|
110
|
-
streamlit/elements/widgets/color_picker.py,sha256=
|
106
|
+
streamlit/elements/widgets/button.py,sha256=e1YhNu0JOjPOl4HTzNoAHq7FUAofe2pxecccYdWR0hI,32277
|
107
|
+
streamlit/elements/widgets/camera_input.py,sha256=XD5FUepJsOP1l48qTRyKZUklIoorPv95QuTg_R6SZZQ,9141
|
108
|
+
streamlit/elements/widgets/chat.py,sha256=eQcR35Mpyp8JCrHZ46wx3bKzVSTI0__PTDlIzml7FTE,14320
|
109
|
+
streamlit/elements/widgets/checkbox.py,sha256=fhAZaZQE1b5Cq1bRO5D77ZN43_osxMjPX109ANy3txk,12573
|
110
|
+
streamlit/elements/widgets/color_picker.py,sha256=2mKr_PQlts1JNUzMyJTrYq0zMePDUbowfDtebAyy3eA,9142
|
111
111
|
streamlit/elements/widgets/data_editor.py,sha256=gOHJqwXw92RjBMTvFoa1y4Ob_UyXtc4rvL2Rbu4-lk4,35827
|
112
|
-
streamlit/elements/widgets/file_uploader.py,sha256=
|
113
|
-
streamlit/elements/widgets/multiselect.py,sha256=
|
114
|
-
streamlit/elements/widgets/number_input.py,sha256=
|
115
|
-
streamlit/elements/widgets/radio.py,sha256=
|
116
|
-
streamlit/elements/widgets/select_slider.py,sha256=
|
117
|
-
streamlit/elements/widgets/selectbox.py,sha256=
|
118
|
-
streamlit/elements/widgets/slider.py,sha256=
|
119
|
-
streamlit/elements/widgets/text_widgets.py,sha256=
|
120
|
-
streamlit/elements/widgets/time_widgets.py,sha256=
|
112
|
+
streamlit/elements/widgets/file_uploader.py,sha256=jammLn0rNmn8YU2dImO0T5RTqwwFOzZvb8Jf8tCdV-g,17656
|
113
|
+
streamlit/elements/widgets/multiselect.py,sha256=3J04cgx3l-Dz3rx4aV8jYloSTm1h2enDmwpaXO9mIvw,13752
|
114
|
+
streamlit/elements/widgets/number_input.py,sha256=N9v4dlJ5yqFJuKMxwZpwTPP8v4bQHw2K3mYY9Uh6iVo,18036
|
115
|
+
streamlit/elements/widgets/radio.py,sha256=Odjl-Cb4jW8hNFEotMZMAvYKpJypzBKrLMx-pAIEyi8,12824
|
116
|
+
streamlit/elements/widgets/select_slider.py,sha256=M82h0XW0td03b9_8BMFdpprhF3YXoCo49ei9KYeMKgs,13442
|
117
|
+
streamlit/elements/widgets/selectbox.py,sha256=cSpHQw6XHtVdnTCYTTQEtePknI-RaUIWa_IyZk7jbqI,11665
|
118
|
+
streamlit/elements/widgets/slider.py,sha256=im6TDvMhPGOAiXG-SYyCPdXIdPRy6VCq5jHBPwMqNfQ,26661
|
119
|
+
streamlit/elements/widgets/text_widgets.py,sha256=_ptQX4Nh0LiFQHMTKaIgnWJlhBH8jgNVKi-lSGCV0a0,22333
|
120
|
+
streamlit/elements/widgets/time_widgets.py,sha256=ML6_lt-mCYloXS3tXTaufd3NENmNDlrXZQUrixrtMTs,30042
|
121
121
|
streamlit/external/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
122
122
|
streamlit/external/langchain/__init__.py,sha256=sAzaNf4Cje3cJikPBVvF7pj1sEdEvUfKIEY_Z6Zk8cA,814
|
123
123
|
streamlit/external/langchain/streamlit_callback_handler.py,sha256=kKrusABDJ__KaA_mPnTxumSSYKQjYExaQsoMlELZZGI,15280
|
@@ -303,7 +303,7 @@ streamlit/runtime/caching/cache_data_api.py,sha256=KFO3cmZKQKuDE1fZt-4TomnwIH6yz
|
|
303
303
|
streamlit/runtime/caching/cache_errors.py,sha256=V7RvfYfJL-ty2Gq79QcdwgpuHeNIV4sK0iCLzSSdtMs,4730
|
304
304
|
streamlit/runtime/caching/cache_resource_api.py,sha256=VLWClt6Wa2mO4ZCYsc09z0h7M7TAL9od3cNHSxxhzek,21616
|
305
305
|
streamlit/runtime/caching/cache_type.py,sha256=P21JWouFWU0qXQyHbM3y3A1pLZud90ALGeO4bQ5Pvew,1131
|
306
|
-
streamlit/runtime/caching/cache_utils.py,sha256=
|
306
|
+
streamlit/runtime/caching/cache_utils.py,sha256=kwsyMmNE48Az84vgKhlCnWFkbUsjadr-I9BKatMuC7U,18329
|
307
307
|
streamlit/runtime/caching/cached_message_replay.py,sha256=ETf4CLB49LLrQPJVdaiRlyerwNEB9pdgXUgrREB10z0,17358
|
308
308
|
streamlit/runtime/caching/hashing.py,sha256=jBITAKAWfWRJizaHB-7y_SgoF4DJnuqpwL-ETGRdPwY,18986
|
309
309
|
streamlit/runtime/caching/storage/__init__.py,sha256=b3JyzTI6Nyc3htcNZAq_f-XP3jMqnW2UNEbK3bm8bVs,965
|
@@ -324,7 +324,7 @@ streamlit/runtime/scriptrunner/script_runner.py,sha256=QT9Xs8pUzSLYpUZLQTat9MQvm
|
|
324
324
|
streamlit/runtime/state/__init__.py,sha256=UpfNfPrWJ6rVdD-qc0IP_bwZ4MrcNUjyU9wEKDK-eWM,1528
|
325
325
|
streamlit/runtime/state/common.py,sha256=M_yJXkWeDGhFk_SgE9X8GddCYPu2abrXEjR7Gp1GN8A,8065
|
326
326
|
streamlit/runtime/state/query_params.py,sha256=8BEBqughkLhvFN-RENx99Rn7CwPusSNDz8ZTTBT9BE0,7397
|
327
|
-
streamlit/runtime/state/query_params_proxy.py,sha256=
|
327
|
+
streamlit/runtime/state/query_params_proxy.py,sha256=ZPyNL94CmH-KZfF-WWDtl0NcuBcnHJDHcrE51LsRP6E,7070
|
328
328
|
streamlit/runtime/state/safe_session_state.py,sha256=StGh9V-tm7MCfohgw5FFfwz8tDwwHLeucXAN-lLLObg,5169
|
329
329
|
streamlit/runtime/state/session_state.py,sha256=jOIrZD94Cn1wrLdPZIcMYPxiGK1gbus1pD4FXSYp4Q4,27500
|
330
330
|
streamlit/runtime/state/session_state_proxy.py,sha256=k2JJ9ZX7rMYjpzeGy0WZaBKYaWnXxrbJC5jqdnRQ3jI,5119
|
@@ -521,9 +521,9 @@ streamlit/web/server/server_util.py,sha256=FptUF-CjFh78VjeTQDi3R78m7E64MDe3wcklg
|
|
521
521
|
streamlit/web/server/stats_request_handler.py,sha256=cL__KbJFIhdhf1Zt6skbLehUqT-jo56x1HARxogZDOI,3680
|
522
522
|
streamlit/web/server/upload_file_request_handler.py,sha256=YPDmKWUnaGH9d4QNcMEsY5k1YIz_q-xW1K5fmgHaDzc,4966
|
523
523
|
streamlit/web/server/websocket_headers.py,sha256=07SkWLcOxbyldl7UcBzrMKY9ZojypCQACiKoh5FcH7Y,1870
|
524
|
-
streamlit_nightly-1.33.1.
|
525
|
-
streamlit_nightly-1.33.1.
|
526
|
-
streamlit_nightly-1.33.1.
|
527
|
-
streamlit_nightly-1.33.1.
|
528
|
-
streamlit_nightly-1.33.1.
|
529
|
-
streamlit_nightly-1.33.1.
|
524
|
+
streamlit_nightly-1.33.1.dev20240501.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
|
525
|
+
streamlit_nightly-1.33.1.dev20240501.dist-info/METADATA,sha256=i-7DXAaGfQ65D1ybiDcyfhfsnE5v9k99495HdqOB7CM,8528
|
526
|
+
streamlit_nightly-1.33.1.dev20240501.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
527
|
+
streamlit_nightly-1.33.1.dev20240501.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
|
528
|
+
streamlit_nightly-1.33.1.dev20240501.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
|
529
|
+
streamlit_nightly-1.33.1.dev20240501.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|