streamlit-nightly 1.36.1.dev20240703__py2.py3-none-any.whl → 1.36.1.dev20240705__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/components/v1/component_arrow.py +6 -6
- streamlit/dataframe_util.py +181 -132
- streamlit/delta_generator.py +1 -1
- streamlit/elements/arrow.py +14 -37
- streamlit/elements/lib/built_in_chart_utils.py +3 -10
- streamlit/elements/lib/pandas_styler_utils.py +3 -1
- streamlit/elements/lib/policies.py +41 -7
- streamlit/elements/map.py +2 -13
- streamlit/elements/plotly_chart.py +10 -11
- streamlit/elements/vega_charts.py +16 -29
- streamlit/elements/widgets/button.py +16 -14
- streamlit/elements/widgets/camera_input.py +8 -8
- streamlit/elements/widgets/chat.py +8 -10
- streamlit/elements/widgets/checkbox.py +6 -9
- streamlit/elements/widgets/color_picker.py +7 -8
- streamlit/elements/widgets/data_editor.py +10 -12
- streamlit/elements/widgets/file_uploader.py +8 -8
- streamlit/elements/widgets/multiselect.py +7 -8
- streamlit/elements/widgets/number_input.py +6 -9
- streamlit/elements/widgets/radio.py +7 -8
- streamlit/elements/widgets/select_slider.py +7 -6
- streamlit/elements/widgets/selectbox.py +7 -8
- streamlit/elements/widgets/slider.py +7 -8
- streamlit/elements/widgets/text_widgets.py +13 -12
- streamlit/elements/widgets/time_widgets.py +11 -14
- streamlit/elements/write.py +4 -12
- streamlit/runtime/caching/cache_utils.py +2 -5
- streamlit/testing/v1/element_tree.py +2 -2
- {streamlit_nightly-1.36.1.dev20240703.dist-info → streamlit_nightly-1.36.1.dev20240705.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.36.1.dev20240703.dist-info → streamlit_nightly-1.36.1.dev20240705.dist-info}/RECORD +34 -34
- {streamlit_nightly-1.36.1.dev20240703.data → streamlit_nightly-1.36.1.dev20240705.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.36.1.dev20240703.dist-info → streamlit_nightly-1.36.1.dev20240705.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.36.1.dev20240703.dist-info → streamlit_nightly-1.36.1.dev20240705.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.36.1.dev20240703.dist-info → streamlit_nightly-1.36.1.dev20240705.dist-info}/top_level.txt +0 -0
@@ -24,10 +24,7 @@ from typing_extensions import TypeAlias
|
|
24
24
|
|
25
25
|
from streamlit.elements.form import current_form_id
|
26
26
|
from streamlit.elements.lib.policies import (
|
27
|
-
|
28
|
-
check_callback_rules,
|
29
|
-
check_fragment_path_policy,
|
30
|
-
check_session_state_rules,
|
27
|
+
check_widget_policies,
|
31
28
|
maybe_raise_label_warnings,
|
32
29
|
)
|
33
30
|
from streamlit.elements.lib.utils import (
|
@@ -375,10 +372,12 @@ class SliderMixin:
|
|
375
372
|
) -> SliderReturn:
|
376
373
|
key = to_key(key)
|
377
374
|
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
375
|
+
check_widget_policies(
|
376
|
+
self.dg,
|
377
|
+
key,
|
378
|
+
on_change,
|
379
|
+
default_value=value,
|
380
|
+
)
|
382
381
|
maybe_raise_label_warnings(label, label_visibility)
|
383
382
|
|
384
383
|
id = compute_widget_id(
|
@@ -20,10 +20,7 @@ from typing import TYPE_CHECKING, Literal, cast, overload
|
|
20
20
|
|
21
21
|
from streamlit.elements.form import current_form_id
|
22
22
|
from streamlit.elements.lib.policies import (
|
23
|
-
|
24
|
-
check_callback_rules,
|
25
|
-
check_fragment_path_policy,
|
26
|
-
check_session_state_rules,
|
23
|
+
check_widget_policies,
|
27
24
|
maybe_raise_label_warnings,
|
28
25
|
)
|
29
26
|
from streamlit.elements.lib.utils import (
|
@@ -264,10 +261,12 @@ class TextWidgetsMixin:
|
|
264
261
|
) -> str | None:
|
265
262
|
key = to_key(key)
|
266
263
|
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
264
|
+
check_widget_policies(
|
265
|
+
self.dg,
|
266
|
+
key,
|
267
|
+
on_change,
|
268
|
+
default_value=None if value == "" else value,
|
269
|
+
)
|
271
270
|
maybe_raise_label_warnings(label, label_visibility)
|
272
271
|
|
273
272
|
# Make sure value is always string or None:
|
@@ -534,10 +533,12 @@ class TextWidgetsMixin:
|
|
534
533
|
) -> str | None:
|
535
534
|
key = to_key(key)
|
536
535
|
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
536
|
+
check_widget_policies(
|
537
|
+
self.dg,
|
538
|
+
key,
|
539
|
+
on_change,
|
540
|
+
default_value=None if value == "" else value,
|
541
|
+
)
|
541
542
|
maybe_raise_label_warnings(label, label_visibility)
|
542
543
|
|
543
544
|
value = str(value) if value is not None else None
|
@@ -34,10 +34,7 @@ from typing_extensions import TypeAlias
|
|
34
34
|
|
35
35
|
from streamlit.elements.form import current_form_id
|
36
36
|
from streamlit.elements.lib.policies import (
|
37
|
-
|
38
|
-
check_callback_rules,
|
39
|
-
check_fragment_path_policy,
|
40
|
-
check_session_state_rules,
|
37
|
+
check_widget_policies,
|
41
38
|
maybe_raise_label_warnings,
|
42
39
|
)
|
43
40
|
from streamlit.elements.lib.utils import (
|
@@ -434,11 +431,11 @@ class TimeWidgetsMixin:
|
|
434
431
|
) -> time | None:
|
435
432
|
key = to_key(key)
|
436
433
|
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
default_value=value if value != "now" else None,
|
434
|
+
check_widget_policies(
|
435
|
+
self.dg,
|
436
|
+
key,
|
437
|
+
on_change,
|
438
|
+
default_value=value if value != "now" else None,
|
442
439
|
)
|
443
440
|
maybe_raise_label_warnings(label, label_visibility)
|
444
441
|
|
@@ -699,11 +696,11 @@ class TimeWidgetsMixin:
|
|
699
696
|
) -> DateWidgetReturn:
|
700
697
|
key = to_key(key)
|
701
698
|
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
default_value=value if value != "default_value_today" else None,
|
699
|
+
check_widget_policies(
|
700
|
+
self.dg,
|
701
|
+
key,
|
702
|
+
on_change,
|
703
|
+
default_value=value if value != "default_value_today" else None,
|
707
704
|
)
|
708
705
|
maybe_raise_label_warnings(label, label_visibility)
|
709
706
|
|
streamlit/elements/write.py
CHANGED
@@ -401,22 +401,14 @@ class WriteMixin:
|
|
401
401
|
item()
|
402
402
|
else:
|
403
403
|
self.write(item, unsafe_allow_html=unsafe_allow_html)
|
404
|
-
elif
|
404
|
+
elif isinstance(arg, Exception):
|
405
|
+
flush_buffer()
|
406
|
+
self.dg.exception(arg)
|
407
|
+
elif dataframe_util.is_dataframe_like(
|
405
408
|
arg
|
406
409
|
) or dataframe_util.is_snowpark_row_list(arg):
|
407
410
|
flush_buffer()
|
408
411
|
self.dg.dataframe(arg)
|
409
|
-
elif dataframe_util.is_dataframe_like(arg):
|
410
|
-
import numpy as np
|
411
|
-
|
412
|
-
flush_buffer()
|
413
|
-
if len(np.shape(arg)) > 2:
|
414
|
-
self.dg.text(arg)
|
415
|
-
else:
|
416
|
-
self.dg.dataframe(arg)
|
417
|
-
elif isinstance(arg, Exception):
|
418
|
-
flush_buffer()
|
419
|
-
self.dg.exception(arg)
|
420
412
|
elif type_util.is_altair_chart(arg):
|
421
413
|
flush_buffer()
|
422
414
|
self.dg.altair_chart(arg)
|
@@ -26,7 +26,7 @@ from collections import defaultdict
|
|
26
26
|
from typing import TYPE_CHECKING, Any, Callable, Final
|
27
27
|
|
28
28
|
from streamlit import type_util
|
29
|
-
from streamlit.dataframe_util import
|
29
|
+
from streamlit.dataframe_util import is_unevaluated_data_object
|
30
30
|
from streamlit.elements.spinner import spinner
|
31
31
|
from streamlit.logger import get_logger
|
32
32
|
from streamlit.runtime.caching.cache_errors import (
|
@@ -289,10 +289,7 @@ class CachedFunc:
|
|
289
289
|
# An exception was thrown while we tried to write to the cache. Report it to the user.
|
290
290
|
# (We catch `RuntimeError` here because it will be raised by Apache Spark if we do not
|
291
291
|
# collect dataframe before using `st.cache_data`.)
|
292
|
-
if
|
293
|
-
type_util.is_type(computed_value, type_name)
|
294
|
-
for type_name in UNEVALUATED_DATAFRAME_TYPES
|
295
|
-
]:
|
292
|
+
if is_unevaluated_data_object(computed_value):
|
296
293
|
# If the returned value is an unevaluated dataframe, raise an error.
|
297
294
|
# Unevaluated dataframes are not yet in the local memory, which also
|
298
295
|
# means they cannot be properly cached (serialized).
|
@@ -506,7 +506,7 @@ class Dataframe(Element):
|
|
506
506
|
|
507
507
|
@property
|
508
508
|
def value(self) -> PandasDataframe:
|
509
|
-
return dataframe_util.
|
509
|
+
return dataframe_util.convert_arrow_bytes_to_pandas_df(self.proto.data)
|
510
510
|
|
511
511
|
|
512
512
|
SingleDateValue: TypeAlias = Union[date, datetime]
|
@@ -1107,7 +1107,7 @@ class Table(Element):
|
|
1107
1107
|
|
1108
1108
|
@property
|
1109
1109
|
def value(self) -> PandasDataframe:
|
1110
|
-
return dataframe_util.
|
1110
|
+
return dataframe_util.convert_arrow_bytes_to_pandas_df(self.proto.data)
|
1111
1111
|
|
1112
1112
|
|
1113
1113
|
@dataclass(repr=False)
|
@@ -10,8 +10,8 @@ streamlit/config_option.py,sha256=7kfzt-xhJs3awfyIHsyRaTBSxLpz1RioobDl5uXV37g,11
|
|
10
10
|
streamlit/config_util.py,sha256=-MGb5eBrsZvNmqywmiBmo27ll1F9OmCDX4toGWglv2c,6015
|
11
11
|
streamlit/constants.py,sha256=KhNjCeooky2bbW7QMX3ijOA5enHIOgj6Xo4TBhtTJNE,798
|
12
12
|
streamlit/cursor.py,sha256=LUDB6o7xyGb1it_8rl5QU_N3MRhFCdtnd9tuTx78abU,6001
|
13
|
-
streamlit/dataframe_util.py,sha256=
|
14
|
-
streamlit/delta_generator.py,sha256=
|
13
|
+
streamlit/dataframe_util.py,sha256=OOYUEOO9xPpjOa3-04eWKEgO8GryCAHzpDvidfS8H-E,30932
|
14
|
+
streamlit/delta_generator.py,sha256=wsCmSPzarubL-AJ7KEAqZrJP77scBvf3J7xPWpJSJSg,28369
|
15
15
|
streamlit/deprecation_util.py,sha256=3JxWWS424v1kQ-qOq-9sQNYPQ8_UERH3QpYtkWxLP74,6516
|
16
16
|
streamlit/development.py,sha256=iO-KQc62Do9uSwoa5vV2tfImqz3QPhJ1Md6DETcnHkc,813
|
17
17
|
streamlit/echo.py,sha256=s0tT_IXxh7BLHOapRS8syE5Tnm4Djm3-oKO0J0MY1wI,4077
|
@@ -50,7 +50,7 @@ streamlit/components/types/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV
|
|
50
50
|
streamlit/components/types/base_component_registry.py,sha256=Zw8uO9qTKcpYJokkML_80phRPCi2jL6UHZfh5y0yHoQ,3137
|
51
51
|
streamlit/components/types/base_custom_component.py,sha256=a8fvmmf8DN18fhezsdgkr9Bzi4ue7G_TUG66sBSbsp0,4262
|
52
52
|
streamlit/components/v1/__init__.py,sha256=I7xa1wfGQY84U_nWWsq1i_HO5kCQ7f0BE5_dEQUiWRw,1027
|
53
|
-
streamlit/components/v1/component_arrow.py,sha256=
|
53
|
+
streamlit/components/v1/component_arrow.py,sha256=sG9hKzRCMWHW18ZkpaAkhTI_yGYhzxy1xjylb_mt5FY,4428
|
54
54
|
streamlit/components/v1/component_registry.py,sha256=OfrYqNhRYy0gVD22k5QhEne8mYcq1kWGmb71TjW5ZeQ,4791
|
55
55
|
streamlit/components/v1/components.py,sha256=xyJSWP81OPAybRY2G4oLgBLdqAzX-hoY-Ib6Wi90Jdw,1335
|
56
56
|
streamlit/components/v1/custom_component.py,sha256=-JaDuFjEBX98dL74IDWSx1k4x_a0YdO0XdnEb1O-W8U,9397
|
@@ -62,7 +62,7 @@ streamlit/connections/sql_connection.py,sha256=ceUwbCZGdCMwypnnTpAJpVtLGZV_CxzmC
|
|
62
62
|
streamlit/connections/util.py,sha256=3Ryc93a5KstsVwQl6ug5cmb8F-WQoD4c0mBWNPLoFsY,3022
|
63
63
|
streamlit/elements/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
64
64
|
streamlit/elements/alert.py,sha256=lH-6imS4xVigL-aDQmLq3WaGalcyGDL2A_81bLIgQz4,7430
|
65
|
-
streamlit/elements/arrow.py,sha256=
|
65
|
+
streamlit/elements/arrow.py,sha256=d3CQAoney9eZMJ8Q7PJnq_msjUI8ag0232-aPwzsvzM,27893
|
66
66
|
streamlit/elements/balloons.py,sha256=QnORgG96Opga1SVg8tUBOm-l3nMpKWmjvy1crcS2XaU,1482
|
67
67
|
streamlit/elements/bokeh_chart.py,sha256=UffqDmO_yyMG-a8t2QzWEsxxpJteFaNRGXWrci0fFPc,4257
|
68
68
|
streamlit/elements/code.py,sha256=z63aR1xrYPyUBaFNyLbn5m1cY-KYIC7eJPg6qHGy4Ek,2480
|
@@ -79,48 +79,48 @@ streamlit/elements/iframe.py,sha256=HwfwNQmlN9kmylqLbXEkUb_44ei36UxyZB7hWiSLNDY,
|
|
79
79
|
streamlit/elements/image.py,sha256=Gkmyp-7QfjLg1WKflOdgOBkbjIgrBnQhYDTYw8utD2k,20450
|
80
80
|
streamlit/elements/json.py,sha256=d1PHLaHDsrgQEv__KspWvwIvcufru_v5L871qEPStWM,3365
|
81
81
|
streamlit/elements/layouts.py,sha256=1YjSnGIlQQiH6O2pE7RMMe2Uqj8liypCbL94OSf1yag,31961
|
82
|
-
streamlit/elements/map.py,sha256=
|
82
|
+
streamlit/elements/map.py,sha256=8ftqFn2MZntMyfsIsu5AIXgEv7XKr6EbyJpAQZwew1M,16491
|
83
83
|
streamlit/elements/markdown.py,sha256=ESaOIk31BldHGfAYjohIopncP5IHPefUXN7EdZPPZCQ,10513
|
84
84
|
streamlit/elements/media.py,sha256=s7qFP4kBlDMWqvsJJ0buLm-8j2me7C93Tr630C31pk0,29683
|
85
85
|
streamlit/elements/metric.py,sha256=u1PyLfPGwvR2pWgOrNMyf-unfyE-B2fw5UkwArQVUF4,10143
|
86
|
-
streamlit/elements/plotly_chart.py,sha256=
|
86
|
+
streamlit/elements/plotly_chart.py,sha256=UJpDOD6GAWHmDLhnbZdI44nFTVq28o9rcIJW4p9ej6o,19450
|
87
87
|
streamlit/elements/progress.py,sha256=7PbyifyZ4vqYijBonXWLsujST3mVaKVyMaYvP3yinEk,5844
|
88
88
|
streamlit/elements/pyplot.py,sha256=YKhugB3O5rTqaLQGI13v0KQdMOiC9QFY6rK5g_qyLQY,6409
|
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
92
|
streamlit/elements/toast.py,sha256=Or7FvYir6slVm27R36AUvpDEfz9nSg_8p0OMBRaSVIM,4341
|
93
|
-
streamlit/elements/vega_charts.py,sha256=
|
94
|
-
streamlit/elements/write.py,sha256=
|
93
|
+
streamlit/elements/vega_charts.py,sha256=tZp_fXHAOGJM-geka5o9qZvv0PEivVMe4f5-XCjkq_4,75559
|
94
|
+
streamlit/elements/write.py,sha256=Q3awEsRum8fO4fkDZ9_n1JuGi_7FWvmDVm1eFDfkL3A,20779
|
95
95
|
streamlit/elements/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
96
|
-
streamlit/elements/lib/built_in_chart_utils.py,sha256=
|
96
|
+
streamlit/elements/lib/built_in_chart_utils.py,sha256=qziOO5BQrCxDoYmk46ePIR9jnopPxEXYC4PPog3lgB0,36823
|
97
97
|
streamlit/elements/lib/column_config_utils.py,sha256=9VHWZyy5wygizR1H_LXHmVWfhNn-DwxBTbQgZMBhF8c,17384
|
98
98
|
streamlit/elements/lib/column_types.py,sha256=anShsRYM3brr30bB7B-j3PBm3pJwD7dBpFz-7zwSfwY,51180
|
99
99
|
streamlit/elements/lib/dialog.py,sha256=qaQjJNeaXanqCBtJ-rDv1vY2oCLRSiigdi7qKtYaldw,5732
|
100
100
|
streamlit/elements/lib/dicttools.py,sha256=9zXu6Z5Ky4ul74RBGB8Roi5LDoB_GTo_0vd2GNSnohQ,3827
|
101
101
|
streamlit/elements/lib/event_utils.py,sha256=wJaZxBH-x9icnWmDuO9ukIQhHek9T2rcxlrD7UVzmvk,1496
|
102
102
|
streamlit/elements/lib/mutable_status_container.py,sha256=TKWzUcn7JJ26L4ZVGSS-Pdp-V3TKiSndzMYq_UCqnRU,6716
|
103
|
-
streamlit/elements/lib/pandas_styler_utils.py,sha256=
|
104
|
-
streamlit/elements/lib/policies.py,sha256=
|
103
|
+
streamlit/elements/lib/pandas_styler_utils.py,sha256=VMo1RnsnU5KpiA73heGHCN1qYlRP8IE7a3pqSvvKthk,8121
|
104
|
+
streamlit/elements/lib/policies.py,sha256=t60jZr4SAEfjudzxMB6S_BTc17zs-V98eexlkPjFcag,7086
|
105
105
|
streamlit/elements/lib/streamlit_plotly_theme.py,sha256=DgMP_PWTfFO5J__q8bGxoT3ey5z727582wDD_u3UaPU,8307
|
106
106
|
streamlit/elements/lib/subtitle_utils.py,sha256=ciPgQ6Yi3NS7OdFgDH6lGFwDZpv022flEyQKY5lHNiE,6245
|
107
107
|
streamlit/elements/lib/utils.py,sha256=ko1uhpuIX21vSCZfDf7cqtcI6_6_3eKk_aro5X0WVvY,7976
|
108
108
|
streamlit/elements/widgets/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
109
|
-
streamlit/elements/widgets/button.py,sha256=
|
110
|
-
streamlit/elements/widgets/camera_input.py,sha256=
|
111
|
-
streamlit/elements/widgets/chat.py,sha256=
|
112
|
-
streamlit/elements/widgets/checkbox.py,sha256=
|
113
|
-
streamlit/elements/widgets/color_picker.py,sha256=
|
114
|
-
streamlit/elements/widgets/data_editor.py,sha256=
|
115
|
-
streamlit/elements/widgets/file_uploader.py,sha256=
|
116
|
-
streamlit/elements/widgets/multiselect.py,sha256=
|
117
|
-
streamlit/elements/widgets/number_input.py,sha256=
|
118
|
-
streamlit/elements/widgets/radio.py,sha256=
|
119
|
-
streamlit/elements/widgets/select_slider.py,sha256=
|
120
|
-
streamlit/elements/widgets/selectbox.py,sha256=
|
121
|
-
streamlit/elements/widgets/slider.py,sha256=
|
122
|
-
streamlit/elements/widgets/text_widgets.py,sha256=
|
123
|
-
streamlit/elements/widgets/time_widgets.py,sha256=
|
109
|
+
streamlit/elements/widgets/button.py,sha256=7K6imq1h_cboAna-6dx_y2yqRtRT_a024nrJrKWqOgQ,34166
|
110
|
+
streamlit/elements/widgets/camera_input.py,sha256=LZp8sqM9TlmLC654M2wpvOLCM9TnEIK3X-UfXMjl444,9119
|
111
|
+
streamlit/elements/widgets/chat.py,sha256=vzuqbVJVBiwxdL6ZogMPgHsmiJGaH_iRE9VUqkenhEI,14225
|
112
|
+
streamlit/elements/widgets/checkbox.py,sha256=5ev_uRBIvoWgIpj9jjGjvIweem1oIXYr_VOk6IUGJn0,12517
|
113
|
+
streamlit/elements/widgets/color_picker.py,sha256=IUN_YnQvR9Xd3CdhgReKISMBa2TJVzGx02XPfr9wECU,9130
|
114
|
+
streamlit/elements/widgets/data_editor.py,sha256=BCbmXKUaNdMYeZdU0Kg4qdqZKpQy4HOftMJ2yjFlfEA,35109
|
115
|
+
streamlit/elements/widgets/file_uploader.py,sha256=XC5Z6pGMfwA-aC_NbYAb1OqvJlzjyowoiQXlb73V-fk,17584
|
116
|
+
streamlit/elements/widgets/multiselect.py,sha256=_c2tY-db3w-5KPIHo440rxQuijEeTKWvjSdsULvVMTg,13777
|
117
|
+
streamlit/elements/widgets/number_input.py,sha256=2mUKiLdEHm8AnL2h3gQGQW18bJac6lR4a1Gpgilq5Pc,17844
|
118
|
+
streamlit/elements/widgets/radio.py,sha256=TpXURT0iVzVw6CFeIF5tgr_zksh5Yy4huH0ve8ACBK8,12857
|
119
|
+
streamlit/elements/widgets/select_slider.py,sha256=rlyw26gbxPKNpPFm2254dvk2XqsucaNq2AX0zw3jz-Y,13468
|
120
|
+
streamlit/elements/widgets/selectbox.py,sha256=V1yR1RRSCbunWYk_-_levvQ9Nul8ARP4YKwuD2XeUgc,11730
|
121
|
+
streamlit/elements/widgets/slider.py,sha256=rsiCTt7X1a7OBenzWTcLGYg4MA-fFKGI34Slk9PEVJ8,26566
|
122
|
+
streamlit/elements/widgets/text_widgets.py,sha256=bkVsyjTos1xsbFqvkMqeojZjHQ9rYrS2RIk00tpf2_w,22352
|
123
|
+
streamlit/elements/widgets/time_widgets.py,sha256=ISe_WLWSgPk0vj7SWy67zsgCruyxxj8el2hlTa-e7GA,29914
|
124
124
|
streamlit/external/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
125
125
|
streamlit/external/langchain/__init__.py,sha256=sAzaNf4Cje3cJikPBVvF7pj1sEdEvUfKIEY_Z6Zk8cA,814
|
126
126
|
streamlit/external/langchain/streamlit_callback_handler.py,sha256=Q4RRYmYOj4zJjvM7aP8OCqSM7w9SHwfHP7dg9S0QGmA,15301
|
@@ -314,7 +314,7 @@ streamlit/runtime/caching/cache_data_api.py,sha256=TKlhbVqK7-dMNoS0C_gGPoRU6aIwf
|
|
314
314
|
streamlit/runtime/caching/cache_errors.py,sha256=0yMPp7XhePilU91rIYu_XEuKnv6qeixW5a_YirpHWS8,4760
|
315
315
|
streamlit/runtime/caching/cache_resource_api.py,sha256=S27tMgvsDIBH4C2HYVRfJUK2cGFo45rjtxQkAkMsJiQ,20975
|
316
316
|
streamlit/runtime/caching/cache_type.py,sha256=P21JWouFWU0qXQyHbM3y3A1pLZud90ALGeO4bQ5Pvew,1131
|
317
|
-
streamlit/runtime/caching/cache_utils.py,sha256=
|
317
|
+
streamlit/runtime/caching/cache_utils.py,sha256=kzA83MTakvm4PlS4gvYTJ-oBwkQRAzIryMadjnLDgB0,18255
|
318
318
|
streamlit/runtime/caching/cached_message_replay.py,sha256=20lsH6isxIr6Mpixywj-_I6ltFDD_NX4MnmWia4LRVA,17973
|
319
319
|
streamlit/runtime/caching/hashing.py,sha256=05cvu9x_KV2pQp8pisH_mTIL0pqbBhobf3HZWVpNT6w,18988
|
320
320
|
streamlit/runtime/caching/legacy_cache_api.py,sha256=yhhJkDAZo_apGVC96IydBxV87NeVHiANJHzlGu7GTDQ,6033
|
@@ -501,7 +501,7 @@ streamlit/static/static/media/rocket.b75b17d2b0a063c6cea230d1a9d77f1e.svg,sha256
|
|
501
501
|
streamlit/testing/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
502
502
|
streamlit/testing/v1/__init__.py,sha256=XGxNOq4VfmwlVj9K6vXB8dAH1YbI_8AIsvw_vbzQoNA,690
|
503
503
|
streamlit/testing/v1/app_test.py,sha256=cRRGOX53EZKCZgl22OOzrCmEbgGsLDJ4tnIzhNXNL3A,36879
|
504
|
-
streamlit/testing/v1/element_tree.py,sha256=
|
504
|
+
streamlit/testing/v1/element_tree.py,sha256=jWTk7AlcUAEWLl6yCSEfqp_uI2jH9eS6oIpi4sMJTX8,60047
|
505
505
|
streamlit/testing/v1/local_script_runner.py,sha256=OSbOJJooiy70lkjYMqAytWm7X_12Ry7G1JZHaLl3-cI,6595
|
506
506
|
streamlit/testing/v1/util.py,sha256=IwxXIlGsVNtC1RmtmgdeBHmJYPjK0wiqNL4HMW6IJZI,1791
|
507
507
|
streamlit/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -530,9 +530,9 @@ streamlit/web/server/server_util.py,sha256=C3M971XFoEXTMufQLwHbZdtZOE30nWx-2WiXm
|
|
530
530
|
streamlit/web/server/stats_request_handler.py,sha256=47nQHe4ETsO9QS9FAEUF8rZigU_k5eACJZw4-jc8U6c,3684
|
531
531
|
streamlit/web/server/upload_file_request_handler.py,sha256=ftyKpARrUjOpRcFETIXuoTyOG_mo-ToOw5NI0y_W4lE,5003
|
532
532
|
streamlit/web/server/websocket_headers.py,sha256=07SkWLcOxbyldl7UcBzrMKY9ZojypCQACiKoh5FcH7Y,1870
|
533
|
-
streamlit_nightly-1.36.1.
|
534
|
-
streamlit_nightly-1.36.1.
|
535
|
-
streamlit_nightly-1.36.1.
|
536
|
-
streamlit_nightly-1.36.1.
|
537
|
-
streamlit_nightly-1.36.1.
|
538
|
-
streamlit_nightly-1.36.1.
|
533
|
+
streamlit_nightly-1.36.1.dev20240705.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
|
534
|
+
streamlit_nightly-1.36.1.dev20240705.dist-info/METADATA,sha256=BWsBXLq5ZhRV0a1ag1Fp6XfNEFCKm37jg9RVu7ZPBvI,8531
|
535
|
+
streamlit_nightly-1.36.1.dev20240705.dist-info/WHEEL,sha256=0XQbNV6JE5ziJsWjIU8TRRv0N6SohNonLWgP86g5fiI,109
|
536
|
+
streamlit_nightly-1.36.1.dev20240705.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
|
537
|
+
streamlit_nightly-1.36.1.dev20240705.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
|
538
|
+
streamlit_nightly-1.36.1.dev20240705.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|