streamlit-nightly 1.36.1.dev20240630__py2.py3-none-any.whl → 1.36.1.dev20240703__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/navigation.py +2 -2
- streamlit/components/v1/component_arrow.py +16 -11
- streamlit/components/v1/custom_component.py +2 -1
- streamlit/config.py +1 -136
- streamlit/dataframe_util.py +835 -0
- streamlit/delta_generator.py +5 -3
- streamlit/elements/arrow.py +17 -13
- streamlit/elements/dialog_decorator.py +1 -1
- streamlit/elements/exception.py +2 -8
- streamlit/elements/image.py +2 -1
- streamlit/elements/lib/built_in_chart_utils.py +78 -12
- streamlit/elements/lib/column_config_utils.py +1 -1
- streamlit/elements/lib/pandas_styler_utils.py +2 -2
- streamlit/elements/lib/policies.py +20 -2
- streamlit/elements/lib/utils.py +100 -10
- streamlit/elements/map.py +2 -2
- streamlit/elements/media.py +1 -1
- streamlit/elements/metric.py +5 -2
- streamlit/elements/plotly_chart.py +1 -1
- streamlit/elements/pyplot.py +26 -39
- streamlit/elements/vega_charts.py +6 -5
- streamlit/elements/widgets/button.py +1 -1
- streamlit/elements/widgets/camera_input.py +7 -2
- streamlit/elements/widgets/chat.py +1 -1
- streamlit/elements/widgets/checkbox.py +7 -2
- streamlit/elements/widgets/color_picker.py +7 -2
- streamlit/elements/widgets/data_editor.py +10 -9
- streamlit/elements/widgets/file_uploader.py +7 -2
- streamlit/elements/widgets/multiselect.py +6 -7
- streamlit/elements/widgets/number_input.py +7 -2
- streamlit/elements/widgets/radio.py +6 -7
- streamlit/elements/widgets/select_slider.py +6 -7
- streamlit/elements/widgets/selectbox.py +6 -7
- streamlit/elements/widgets/slider.py +7 -2
- streamlit/elements/widgets/text_widgets.py +8 -5
- streamlit/elements/widgets/time_widgets.py +7 -2
- streamlit/elements/write.py +5 -5
- streamlit/errors.py +0 -29
- streamlit/navigation/page.py +8 -3
- streamlit/proto/NewSession_pb2.pyi +1 -1
- streamlit/runtime/app_session.py +0 -4
- streamlit/runtime/caching/cache_utils.py +1 -1
- streamlit/runtime/scriptrunner/script_runner.py +7 -22
- streamlit/runtime/state/common.py +51 -2
- streamlit/runtime/state/session_state.py +2 -1
- streamlit/runtime/state/session_state_proxy.py +1 -1
- streamlit/runtime/state/widgets.py +1 -1
- streamlit/static/asset-manifest.json +2 -2
- streamlit/static/index.html +1 -1
- streamlit/static/static/js/main.28e3c6e9.js +2 -0
- streamlit/testing/v1/element_tree.py +3 -3
- streamlit/type_util.py +0 -1069
- streamlit/watcher/path_watcher.py +1 -2
- {streamlit_nightly-1.36.1.dev20240630.dist-info → streamlit_nightly-1.36.1.dev20240703.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.36.1.dev20240630.dist-info → streamlit_nightly-1.36.1.dev20240703.dist-info}/RECORD +60 -59
- {streamlit_nightly-1.36.1.dev20240630.dist-info → streamlit_nightly-1.36.1.dev20240703.dist-info}/WHEEL +1 -1
- streamlit/static/static/js/main.0326e951.js +0 -2
- /streamlit/static/static/js/{main.0326e951.js.LICENSE.txt → main.28e3c6e9.js.LICENSE.txt} +0 -0
- {streamlit_nightly-1.36.1.dev20240630.data → streamlit_nightly-1.36.1.dev20240703.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.36.1.dev20240630.dist-info → streamlit_nightly-1.36.1.dev20240703.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.36.1.dev20240630.dist-info → streamlit_nightly-1.36.1.dev20240703.dist-info}/top_level.txt +0 -0
@@ -63,8 +63,7 @@ def _is_watchdog_available() -> bool:
|
|
63
63
|
|
64
64
|
def report_watchdog_availability():
|
65
65
|
if (
|
66
|
-
|
67
|
-
and config.get_option("server.fileWatcherType") not in ["poll", "none"]
|
66
|
+
config.get_option("server.fileWatcherType") not in ["poll", "none"]
|
68
67
|
and not _is_watchdog_available()
|
69
68
|
):
|
70
69
|
msg = "\n $ xcode-select --install" if env_util.IS_DARWIN else ""
|
@@ -5,19 +5,20 @@ streamlit/cli_util.py,sha256=P7A6R9D8whD9mytXHAfIax18hrxweUk5Ma8Klb99SeY,1420
|
|
5
5
|
streamlit/code_util.py,sha256=ALUWXQlQhgp9gUqp7X3ivY240NDEsfQSZUrFcNZ3sK4,2395
|
6
6
|
streamlit/color_util.py,sha256=bVA9iO4hT710gJEBSiymjqVQ-piHUiom3B5AE48T_Qc,9354
|
7
7
|
streamlit/column_config.py,sha256=6RYqAsPV838B0DSb7nYPFedKfTxNCzVrc_4BmwMa_c4,1414
|
8
|
-
streamlit/config.py,sha256=
|
8
|
+
streamlit/config.py,sha256=CZR9ZUQz9gBW6lVzleikL-jP0wJJQTCPSUW9rcr0EVU,39115
|
9
9
|
streamlit/config_option.py,sha256=7kfzt-xhJs3awfyIHsyRaTBSxLpz1RioobDl5uXV37g,11469
|
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/
|
13
|
+
streamlit/dataframe_util.py,sha256=JmGZTWJvamtIXLMw_lb4A2eF1wax-19RETORmYCyiqY,29811
|
14
|
+
streamlit/delta_generator.py,sha256=YnvoL9YGKttxs3tY4mGvpAZLVIjgHdClHWcRDXOZFHE,28369
|
14
15
|
streamlit/deprecation_util.py,sha256=3JxWWS424v1kQ-qOq-9sQNYPQ8_UERH3QpYtkWxLP74,6516
|
15
16
|
streamlit/development.py,sha256=iO-KQc62Do9uSwoa5vV2tfImqz3QPhJ1Md6DETcnHkc,813
|
16
17
|
streamlit/echo.py,sha256=s0tT_IXxh7BLHOapRS8syE5Tnm4Djm3-oKO0J0MY1wI,4077
|
17
18
|
streamlit/emojis.py,sha256=G1ZHg5TQYCorAZR7ZAlyiapaxYAY6NeY2OdP6F0yVMM,81235
|
18
19
|
streamlit/env_util.py,sha256=fqea8xmj4ifsuqmLv3Pvlq4t5y6WVTBua4qRpVTbs5Y,1791
|
19
20
|
streamlit/error_util.py,sha256=Xx19JaBKF-MKHleuPY6TX3Xo_1fSd3ZqZuhvSz-B3LM,3598
|
20
|
-
streamlit/errors.py,sha256=
|
21
|
+
streamlit/errors.py,sha256=ks4wM1303LNLvviFL6fk5ziGjEsDWPsEc5tQFwIp-ms,3213
|
21
22
|
streamlit/file_util.py,sha256=jwAlXtGNEwy335Ct9l14YHqxMuCWGSwgePesj7vNyLg,7216
|
22
23
|
streamlit/folder_black_list.py,sha256=Ji9UZ4PtrilLxmvb8W57SIEK7AkeLGEqqtqr4y2oscI,2342
|
23
24
|
streamlit/git_util.py,sha256=tVRinRwVqJDtJAJOr9d_PuFNbGJKPpo34xpxJTUnfZ0,5261
|
@@ -31,7 +32,7 @@ streamlit/source_util.py,sha256=2KOVrEhBATVh9M_bnbg9OwWPORg1riCB63JzE7g8oK0,6145
|
|
31
32
|
streamlit/string_util.py,sha256=x1ZuLlorPMNUpOZYMAN1VLdxViJwfPcXQ99PKRn0pyg,6347
|
32
33
|
streamlit/temporary_directory.py,sha256=eBv5q0CR9GApa-itZBaGtqQKMl248H0HojEVKzkS9cc,1627
|
33
34
|
streamlit/time_util.py,sha256=zPDirzZDAOPzGogHy-4wOalfBb7zCNCvFEfkZf03otc,2836
|
34
|
-
streamlit/type_util.py,sha256=
|
35
|
+
streamlit/type_util.py,sha256=MbCWEUdd6d79tpvxO6mxUaZOMgKtTQQjso2y8ch2oxo,10101
|
35
36
|
streamlit/url_util.py,sha256=iU1lpZhzW4ZjhjBhSdw39OzixnThIsxhXpDP-ZIgUT8,3019
|
36
37
|
streamlit/user_info.py,sha256=tvv__45d7cA6tNrGw1vHtWwc6QLtmXTM5xZoYeTs1cw,3383
|
37
38
|
streamlit/util.py,sha256=0Phev7Lytvcy_eqIjpoGl2-7mOODwAwArY2zJpavEh8,6375
|
@@ -40,7 +41,7 @@ streamlit/commands/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQg
|
|
40
41
|
streamlit/commands/execution_control.py,sha256=_EpB5LuVeU4jmkp_X-yW7WS4XxaWIM4TnjV2Q13S300,5455
|
41
42
|
streamlit/commands/experimental_query_params.py,sha256=axNJrNpOICoUCVXORo8rvq0l7EBoCGKd10s-wAopxMY,4980
|
42
43
|
streamlit/commands/logo.py,sha256=H3Rlk45D38mfAsk7t_E4wQOq76wn9FKdUKeeNH73Rf8,5682
|
43
|
-
streamlit/commands/navigation.py,sha256
|
44
|
+
streamlit/commands/navigation.py,sha256=-f5y8s-CLPXDCF9VNl5Yvw5KuG6vKzWyFayyQmKPBSM,9533
|
44
45
|
streamlit/commands/page_config.py,sha256=xUpAIuqYp2Z4iUbNIEyJHaJwLGo0dsaAHuB7jgzRWw0,12995
|
45
46
|
streamlit/components/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
46
47
|
streamlit/components/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
@@ -49,10 +50,10 @@ streamlit/components/types/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV
|
|
49
50
|
streamlit/components/types/base_component_registry.py,sha256=Zw8uO9qTKcpYJokkML_80phRPCi2jL6UHZfh5y0yHoQ,3137
|
50
51
|
streamlit/components/types/base_custom_component.py,sha256=a8fvmmf8DN18fhezsdgkr9Bzi4ue7G_TUG66sBSbsp0,4262
|
51
52
|
streamlit/components/v1/__init__.py,sha256=I7xa1wfGQY84U_nWWsq1i_HO5kCQ7f0BE5_dEQUiWRw,1027
|
52
|
-
streamlit/components/v1/component_arrow.py,sha256=
|
53
|
+
streamlit/components/v1/component_arrow.py,sha256=RYnr2JnbVuRDZhSQPzbJrQJvQesIChdS9kqbRqRNC6c,4350
|
53
54
|
streamlit/components/v1/component_registry.py,sha256=OfrYqNhRYy0gVD22k5QhEne8mYcq1kWGmb71TjW5ZeQ,4791
|
54
55
|
streamlit/components/v1/components.py,sha256=xyJSWP81OPAybRY2G4oLgBLdqAzX-hoY-Ib6Wi90Jdw,1335
|
55
|
-
streamlit/components/v1/custom_component.py,sha256
|
56
|
+
streamlit/components/v1/custom_component.py,sha256=-JaDuFjEBX98dL74IDWSx1k4x_a0YdO0XdnEb1O-W8U,9397
|
56
57
|
streamlit/connections/__init__.py,sha256=WSOEtrwhiNYti89iCk3O7I83rurZl8gXoM8tA2d_E-U,1083
|
57
58
|
streamlit/connections/base_connection.py,sha256=8rzoGovDem0o3FzJTikP0IRdL7i3lBqHhyESBnER9no,7465
|
58
59
|
streamlit/connections/snowflake_connection.py,sha256=0fM-Lpg3GnB4jVVQEhMeJcIQs6GlNy-emgrSlPodUTo,12522
|
@@ -61,65 +62,65 @@ streamlit/connections/sql_connection.py,sha256=ceUwbCZGdCMwypnnTpAJpVtLGZV_CxzmC
|
|
61
62
|
streamlit/connections/util.py,sha256=3Ryc93a5KstsVwQl6ug5cmb8F-WQoD4c0mBWNPLoFsY,3022
|
62
63
|
streamlit/elements/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
63
64
|
streamlit/elements/alert.py,sha256=lH-6imS4xVigL-aDQmLq3WaGalcyGDL2A_81bLIgQz4,7430
|
64
|
-
streamlit/elements/arrow.py,sha256=
|
65
|
+
streamlit/elements/arrow.py,sha256=1ICbImQ8hAwU3njvC-9pIbihTS2YrZ_xO46n846SvCQ,28302
|
65
66
|
streamlit/elements/balloons.py,sha256=QnORgG96Opga1SVg8tUBOm-l3nMpKWmjvy1crcS2XaU,1482
|
66
67
|
streamlit/elements/bokeh_chart.py,sha256=UffqDmO_yyMG-a8t2QzWEsxxpJteFaNRGXWrci0fFPc,4257
|
67
68
|
streamlit/elements/code.py,sha256=z63aR1xrYPyUBaFNyLbn5m1cY-KYIC7eJPg6qHGy4Ek,2480
|
68
69
|
streamlit/elements/deck_gl_json_chart.py,sha256=SW4siwXYvNssyzyiDWpTWPU1D8oAKNyTJ06w1fetmOE,6905
|
69
|
-
streamlit/elements/dialog_decorator.py,sha256=
|
70
|
+
streamlit/elements/dialog_decorator.py,sha256=RhV5Nou1twyWmRRBbzasYkBCqY238BpFV8fbhRHh7po,8228
|
70
71
|
streamlit/elements/doc_string.py,sha256=Bc-3His1071cFfrpidgE5HUgolAd3mzEZJIQ3dyyFe4,16172
|
71
72
|
streamlit/elements/empty.py,sha256=VyYZAeipAt73mYYYTobMlIQa6GWq6xfVHtEaK4VOpUA,3853
|
72
|
-
streamlit/elements/exception.py,sha256=
|
73
|
+
streamlit/elements/exception.py,sha256=ihTME6phsEA85uBjjo1NbXAJYLJmyazYEZKuOBrhQmw,8948
|
73
74
|
streamlit/elements/form.py,sha256=jbkeyO_sU0a8ZuutlnYENakLApKI0pKTMzuf4AXy-98,12422
|
74
75
|
streamlit/elements/graphviz_chart.py,sha256=AzDJm1Td3wIkzew53ANyckrQNZ8J3JevrzwlFl7MkKQ,4937
|
75
76
|
streamlit/elements/heading.py,sha256=P138T1fMR0AKESewo8lOxn_PIFGACroj_VrOP1QZ2fA,11272
|
76
77
|
streamlit/elements/html.py,sha256=On0eJKdpveVNnPDU4ApYCQQwM7wqj0GNJh9s8rUranE,2687
|
77
78
|
streamlit/elements/iframe.py,sha256=HwfwNQmlN9kmylqLbXEkUb_44ei36UxyZB7hWiSLNDY,5780
|
78
|
-
streamlit/elements/image.py,sha256=
|
79
|
+
streamlit/elements/image.py,sha256=Gkmyp-7QfjLg1WKflOdgOBkbjIgrBnQhYDTYw8utD2k,20450
|
79
80
|
streamlit/elements/json.py,sha256=d1PHLaHDsrgQEv__KspWvwIvcufru_v5L871qEPStWM,3365
|
80
81
|
streamlit/elements/layouts.py,sha256=1YjSnGIlQQiH6O2pE7RMMe2Uqj8liypCbL94OSf1yag,31961
|
81
|
-
streamlit/elements/map.py,sha256=
|
82
|
+
streamlit/elements/map.py,sha256=ZY9je5MJxgwu6q6OSd2IORSwByFB5K_6hiW3RFoQWH8,16665
|
82
83
|
streamlit/elements/markdown.py,sha256=ESaOIk31BldHGfAYjohIopncP5IHPefUXN7EdZPPZCQ,10513
|
83
|
-
streamlit/elements/media.py,sha256=
|
84
|
-
streamlit/elements/metric.py,sha256=
|
85
|
-
streamlit/elements/plotly_chart.py,sha256=
|
84
|
+
streamlit/elements/media.py,sha256=s7qFP4kBlDMWqvsJJ0buLm-8j2me7C93Tr630C31pk0,29683
|
85
|
+
streamlit/elements/metric.py,sha256=u1PyLfPGwvR2pWgOrNMyf-unfyE-B2fw5UkwArQVUF4,10143
|
86
|
+
streamlit/elements/plotly_chart.py,sha256=Z-_T53Nu1iOFURYRdKizIPmbsg3qf01HSxPG3LWi1OQ,19464
|
86
87
|
streamlit/elements/progress.py,sha256=7PbyifyZ4vqYijBonXWLsujST3mVaKVyMaYvP3yinEk,5844
|
87
|
-
streamlit/elements/pyplot.py,sha256=
|
88
|
+
streamlit/elements/pyplot.py,sha256=YKhugB3O5rTqaLQGI13v0KQdMOiC9QFY6rK5g_qyLQY,6409
|
88
89
|
streamlit/elements/snow.py,sha256=WHqk8zmfOr5iD0R-wLlAdlIkDDbiaayguTVmA4e7V_Q,1439
|
89
90
|
streamlit/elements/spinner.py,sha256=ZMJlO-J77lpQZbRPvqJ80ur9u11dBUwJr6JgDct8TLY,2934
|
90
91
|
streamlit/elements/text.py,sha256=-g2LYiJpP2OAdllpd7Df9rhTehIOEuiZN7-u1jwKEio,1856
|
91
92
|
streamlit/elements/toast.py,sha256=Or7FvYir6slVm27R36AUvpDEfz9nSg_8p0OMBRaSVIM,4341
|
92
|
-
streamlit/elements/vega_charts.py,sha256=
|
93
|
-
streamlit/elements/write.py,sha256=
|
93
|
+
streamlit/elements/vega_charts.py,sha256=7mi8iVZ78Y2LxKJw3OfCNXwmTrBHr_ppN4_GslBws0g,75876
|
94
|
+
streamlit/elements/write.py,sha256=vtFpgC7-LuVaqipPJLVbzewXgBEgu2lNqu1yWb3xvz0,21057
|
94
95
|
streamlit/elements/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
95
|
-
streamlit/elements/lib/built_in_chart_utils.py,sha256=
|
96
|
-
streamlit/elements/lib/column_config_utils.py,sha256
|
96
|
+
streamlit/elements/lib/built_in_chart_utils.py,sha256=8atWdvST2sFVlm43FwJTOoxR5UhRUMI2jLRIaRhYfBI,37041
|
97
|
+
streamlit/elements/lib/column_config_utils.py,sha256=9VHWZyy5wygizR1H_LXHmVWfhNn-DwxBTbQgZMBhF8c,17384
|
97
98
|
streamlit/elements/lib/column_types.py,sha256=anShsRYM3brr30bB7B-j3PBm3pJwD7dBpFz-7zwSfwY,51180
|
98
99
|
streamlit/elements/lib/dialog.py,sha256=qaQjJNeaXanqCBtJ-rDv1vY2oCLRSiigdi7qKtYaldw,5732
|
99
100
|
streamlit/elements/lib/dicttools.py,sha256=9zXu6Z5Ky4ul74RBGB8Roi5LDoB_GTo_0vd2GNSnohQ,3827
|
100
101
|
streamlit/elements/lib/event_utils.py,sha256=wJaZxBH-x9icnWmDuO9ukIQhHek9T2rcxlrD7UVzmvk,1496
|
101
102
|
streamlit/elements/lib/mutable_status_container.py,sha256=TKWzUcn7JJ26L4ZVGSS-Pdp-V3TKiSndzMYq_UCqnRU,6716
|
102
|
-
streamlit/elements/lib/pandas_styler_utils.py,sha256=
|
103
|
-
streamlit/elements/lib/policies.py,sha256=
|
103
|
+
streamlit/elements/lib/pandas_styler_utils.py,sha256=5ZJwG-WD9mEWJy9q4KJfqxOmixHRz-BwYf-F00p-NvY,8094
|
104
|
+
streamlit/elements/lib/policies.py,sha256=9MFc5yUz4yK-_EIXkbwN4gxxW62aXRuFYPD52F75ci0,6084
|
104
105
|
streamlit/elements/lib/streamlit_plotly_theme.py,sha256=DgMP_PWTfFO5J__q8bGxoT3ey5z727582wDD_u3UaPU,8307
|
105
106
|
streamlit/elements/lib/subtitle_utils.py,sha256=ciPgQ6Yi3NS7OdFgDH6lGFwDZpv022flEyQKY5lHNiE,6245
|
106
|
-
streamlit/elements/lib/utils.py,sha256
|
107
|
+
streamlit/elements/lib/utils.py,sha256=ko1uhpuIX21vSCZfDf7cqtcI6_6_3eKk_aro5X0WVvY,7976
|
107
108
|
streamlit/elements/widgets/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
108
|
-
streamlit/elements/widgets/button.py,sha256=
|
109
|
-
streamlit/elements/widgets/camera_input.py,sha256=
|
110
|
-
streamlit/elements/widgets/chat.py,sha256=
|
111
|
-
streamlit/elements/widgets/checkbox.py,sha256
|
112
|
-
streamlit/elements/widgets/color_picker.py,sha256=
|
113
|
-
streamlit/elements/widgets/data_editor.py,sha256=
|
114
|
-
streamlit/elements/widgets/file_uploader.py,sha256=
|
115
|
-
streamlit/elements/widgets/multiselect.py,sha256=
|
116
|
-
streamlit/elements/widgets/number_input.py,sha256=
|
117
|
-
streamlit/elements/widgets/radio.py,sha256=
|
118
|
-
streamlit/elements/widgets/select_slider.py,sha256=
|
119
|
-
streamlit/elements/widgets/selectbox.py,sha256=
|
120
|
-
streamlit/elements/widgets/slider.py,sha256=
|
121
|
-
streamlit/elements/widgets/text_widgets.py,sha256=
|
122
|
-
streamlit/elements/widgets/time_widgets.py,sha256=
|
109
|
+
streamlit/elements/widgets/button.py,sha256=8tjFQ8Ge3eiTk0CjASyn-kDdSKtJ5wXqwdSZ_qbl2U8,34288
|
110
|
+
streamlit/elements/widgets/camera_input.py,sha256=rkpZil5Ne_QQgNMUd8LeoUFaV8Q4M3gTIU_IYcXsZ8A,9256
|
111
|
+
streamlit/elements/widgets/chat.py,sha256=HYD4NAee7xvGBZRQrIU0aC8cfjZDe4FIyIatpe4Xrqo,14371
|
112
|
+
streamlit/elements/widgets/checkbox.py,sha256=nSFDtM9io5dEd3P2u9SJakxbkxt3VfDfiWaSm0Kiy9c,12688
|
113
|
+
streamlit/elements/widgets/color_picker.py,sha256=HFrbSJRkf3jL8S_vSz7yrdxd_v-HuMRBLi8Tu02aTs4,9279
|
114
|
+
streamlit/elements/widgets/data_editor.py,sha256=e_3d6GVlUVsaNlaq-UXEHdOwwFT3PDRMN8e6dc90Z0Y,35236
|
115
|
+
streamlit/elements/widgets/file_uploader.py,sha256=UtutvVO45aMAWO15TUYZAFf0LZht-dvcTqTNBkrqC30,17721
|
116
|
+
streamlit/elements/widgets/multiselect.py,sha256=nPu6_JLLLP7dSS_0E9hhwLu_TZYplIbp2B1uEJGFYFY,13926
|
117
|
+
streamlit/elements/widgets/number_input.py,sha256=LKEJzYsMCpluLlgrIacdU1Zry9l5gb3ONpOGz3ywXfk,18015
|
118
|
+
streamlit/elements/widgets/radio.py,sha256=vf9uIWIhGECCl8nN_UkODlC-fEjjFlzqIvXhJ9tjWVM,13006
|
119
|
+
streamlit/elements/widgets/select_slider.py,sha256=Ec1Zx26IsJp79J1kjRBgF8VWLI6LILaLmdbEIDKmX5g,13541
|
120
|
+
streamlit/elements/widgets/selectbox.py,sha256=XBJhKtpB50QC4zajdUMO49ZTs74wYJGMSTmxEln3JQE,11879
|
121
|
+
streamlit/elements/widgets/slider.py,sha256=Kty1_nFwZ5ewGqa8VBSHdKzCRGU-iKBsnmK519TEfJ4,26715
|
122
|
+
streamlit/elements/widgets/text_widgets.py,sha256=ANsKDjUD_RFsTwWamnoS2HyAra7e7NxsCZXd-xDphTw,22558
|
123
|
+
streamlit/elements/widgets/time_widgets.py,sha256=3ViQ1qy_LWv3BvbvyCP2jvYJmivoZj0X8XhC34qJsV0,30164
|
123
124
|
streamlit/external/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
124
125
|
streamlit/external/langchain/__init__.py,sha256=sAzaNf4Cje3cJikPBVvF7pj1sEdEvUfKIEY_Z6Zk8cA,814
|
125
126
|
streamlit/external/langchain/streamlit_callback_handler.py,sha256=Q4RRYmYOj4zJjvM7aP8OCqSM7w9SHwfHP7dg9S0QGmA,15301
|
@@ -132,7 +133,7 @@ streamlit/hello/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,6
|
|
132
133
|
streamlit/hello/streamlit_app.py,sha256=KTc8e_60aQL8v9WscsVHws5JPLIxqJ94Ldt-GKnuGsU,1073
|
133
134
|
streamlit/hello/utils.py,sha256=IZMM6MZ4tcrLuSN9RWmMEYlzTbbzA3trpq6Pa82NeRw,992
|
134
135
|
streamlit/navigation/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
135
|
-
streamlit/navigation/page.py,sha256=
|
136
|
+
streamlit/navigation/page.py,sha256=wSLDgNUN9vU6h971fO9pV5dxcAWjncG7IuC9WIG1LQo,11286
|
136
137
|
streamlit/proto/Alert_pb2.py,sha256=rGlkoiE7c-gmZbYpuhRdFmRkYLcR3AmdHH3lHw8q1-E,1565
|
137
138
|
streamlit/proto/Alert_pb2.pyi,sha256=sf1JHN92JSQs2_15clCjEfBGPByTTG-FSSZ-qGjWLXk,3106
|
138
139
|
streamlit/proto/AppPage_pb2.py,sha256=zc06HvAElRirQavLwn0TzwJFhB3kvYRxSRdCS1P9ozE,1443
|
@@ -228,7 +229,7 @@ streamlit/proto/NamedDataSet_pb2.pyi,sha256=mPoJIn5_OiuPINNHqQbjOKUnCvuaJyEestFW
|
|
228
229
|
streamlit/proto/Navigation_pb2.py,sha256=10TkFu58kJOdS1lkgpgRz3A4igNMpjqxLuZsyD_ITtU,1684
|
229
230
|
streamlit/proto/Navigation_pb2.pyi,sha256=umYfBJBHZ9XCgGGsfD30ON3NNR8bH_UZ4XNhikNnL4k,3196
|
230
231
|
streamlit/proto/NewSession_pb2.py,sha256=BJecyizgpGS2ytbNdAEoGxbAszNiy_bzYF4JUe_6CWg,5617
|
231
|
-
streamlit/proto/NewSession_pb2.pyi,sha256=
|
232
|
+
streamlit/proto/NewSession_pb2.pyi,sha256=TuDKu6ECkJY723ORTYmOCzykT8CcynLicGpayxgAxkU,18653
|
232
233
|
streamlit/proto/NumberInput_pb2.py,sha256=Oh6jOOGbRR2eETyld_Cw2s1jf0E_HyMpckZ40uIfITY,2485
|
233
234
|
streamlit/proto/NumberInput_pb2.pyi,sha256=FnG42mINoQRf4ibvlQrK2NSyIcwZfqruybAUgNVjYy8,5117
|
234
235
|
streamlit/proto/PageConfig_pb2.py,sha256=_5or911zwhhoscapOlhdI7sCGUtjLfXKRGoqRbp62mA,2291
|
@@ -287,7 +288,7 @@ streamlit/proto/__init__.py,sha256=tM42Nl1HAphMoWU8F7noymVPJLj3dEnqqIitEQCr2XE,6
|
|
287
288
|
streamlit/proto/openmetrics_data_model_pb2.py,sha256=dWlhXENjgvIGCMnAumDVQkLA4TQQzP77G5pncI6oP9I,6424
|
288
289
|
streamlit/proto/openmetrics_data_model_pb2.pyi,sha256=dmABrepaNR5S9kA1UPfQGXqY_ARAUuLmQBqG1Xn_HUY,20319
|
289
290
|
streamlit/runtime/__init__.py,sha256=Xx5OVY9Nv8Z6ndbYtJBm3lgR2pn83omEOlDaSl9V2dE,1523
|
290
|
-
streamlit/runtime/app_session.py,sha256=
|
291
|
+
streamlit/runtime/app_session.py,sha256=KSPPLUWtKukTv_r7NLyN6VYKunkGPllF2eh87I2z81o,37082
|
291
292
|
streamlit/runtime/connection_factory.py,sha256=hrDAlltHMgW8uYFdiER-wBFg_9KrTBrXVmjb_BgxX1k,12452
|
292
293
|
streamlit/runtime/credentials.py,sha256=oMUw4SWHMbk-b4Z7tGWWLQIZBsFF-4xDBjbxzNNJ8x8,11333
|
293
294
|
streamlit/runtime/forward_msg_cache.py,sha256=Oj-c3BhTRLrXhGBzX21ioq8gTsN4nqjyRL0jr4TqlZk,9750
|
@@ -313,7 +314,7 @@ streamlit/runtime/caching/cache_data_api.py,sha256=TKlhbVqK7-dMNoS0C_gGPoRU6aIwf
|
|
313
314
|
streamlit/runtime/caching/cache_errors.py,sha256=0yMPp7XhePilU91rIYu_XEuKnv6qeixW5a_YirpHWS8,4760
|
314
315
|
streamlit/runtime/caching/cache_resource_api.py,sha256=S27tMgvsDIBH4C2HYVRfJUK2cGFo45rjtxQkAkMsJiQ,20975
|
315
316
|
streamlit/runtime/caching/cache_type.py,sha256=P21JWouFWU0qXQyHbM3y3A1pLZud90ALGeO4bQ5Pvew,1131
|
316
|
-
streamlit/runtime/caching/cache_utils.py,sha256=
|
317
|
+
streamlit/runtime/caching/cache_utils.py,sha256=rU7RnzZhDMSnHdBNBZWBsZ-eNRU3Q1ibF3Csh-4jc3w,18371
|
317
318
|
streamlit/runtime/caching/cached_message_replay.py,sha256=20lsH6isxIr6Mpixywj-_I6ltFDD_NX4MnmWia4LRVA,17973
|
318
319
|
streamlit/runtime/caching/hashing.py,sha256=05cvu9x_KV2pQp8pisH_mTIL0pqbBhobf3HZWVpNT6w,18988
|
319
320
|
streamlit/runtime/caching/legacy_cache_api.py,sha256=yhhJkDAZo_apGVC96IydBxV87NeVHiANJHzlGu7GTDQ,6033
|
@@ -330,18 +331,18 @@ streamlit/runtime/scriptrunner/magic_funcs.py,sha256=_npS_w-0riPNr1-dPyOSjqrwTXo
|
|
330
331
|
streamlit/runtime/scriptrunner/script_cache.py,sha256=ZpaB4T50_GYfhMc2dajSMXWCmS3kaUJ_tPHNVt_flBg,2856
|
331
332
|
streamlit/runtime/scriptrunner/script_requests.py,sha256=2QSboPtHbwm5erUiU-cjJ4DJGlTTkE0mpFLBr6cMjFQ,8065
|
332
333
|
streamlit/runtime/scriptrunner/script_run_context.py,sha256=joIcYJilC5MSV6GKy_2mpQMk-3VG0amtxOYf5af54Dc,9313
|
333
|
-
streamlit/runtime/scriptrunner/script_runner.py,sha256=
|
334
|
+
streamlit/runtime/scriptrunner/script_runner.py,sha256=uzd4-rZAbhHkjRHD1MSceqmV1EPJ8hcTWYX7701beVo,26910
|
334
335
|
streamlit/runtime/state/__init__.py,sha256=UpfNfPrWJ6rVdD-qc0IP_bwZ4MrcNUjyU9wEKDK-eWM,1528
|
335
|
-
streamlit/runtime/state/common.py,sha256=
|
336
|
+
streamlit/runtime/state/common.py,sha256=YOzBzlLEqyLdnqPsUnF0uYWE0ckfoaD_puBMf6331G4,9890
|
336
337
|
streamlit/runtime/state/query_params.py,sha256=cESFE1Jq4oN6YpgocUsX0f1sSHMyGRoupbxm9X6v3NM,7477
|
337
338
|
streamlit/runtime/state/query_params_proxy.py,sha256=gxaCF6-jmoM8HWXwQOdC6XgVjVdIYtqiicG3I2hQsLk,7152
|
338
339
|
streamlit/runtime/state/safe_session_state.py,sha256=WLFFyMtP4F19TWWBarKtSP942IepI2eeSBhifwbuFgY,5222
|
339
|
-
streamlit/runtime/state/session_state.py,sha256=
|
340
|
-
streamlit/runtime/state/session_state_proxy.py,sha256=
|
341
|
-
streamlit/runtime/state/widgets.py,sha256=
|
342
|
-
streamlit/static/asset-manifest.json,sha256=
|
340
|
+
streamlit/runtime/state/session_state.py,sha256=BCZdr2Cv8HPU9L4JOPmMWY5rJShXzdPi0EnmXZamNXQ,27380
|
341
|
+
streamlit/runtime/state/session_state_proxy.py,sha256=7_GtKF6niHIxzynZyUtYgBg4FG-pDyasixu--1vP1Y0,5482
|
342
|
+
streamlit/runtime/state/widgets.py,sha256=VgpQqxS2AFTzFuS1MkBcbBlVCKv3O-T2qocmKtn8AMg,11414
|
343
|
+
streamlit/static/asset-manifest.json,sha256=R9ti5gAzZL8_dapXrXE7QgYG20kGTk10SRihQnB5E6k,14351
|
343
344
|
streamlit/static/favicon.png,sha256=if5cVgw7azxKOvV5FpGixga7JLn23rfnHcy1CdWI1-E,1019
|
344
|
-
streamlit/static/index.html,sha256=
|
345
|
+
streamlit/static/index.html,sha256=JaN7NLi4uY57lMW-QlSm2GEAkoH60YHX6i9nb2noT5Q,891
|
345
346
|
streamlit/static/static/css/3466.8b8f33d6.chunk.css,sha256=4m2lbj1eVFXSaGCRBHZNhqyRz-4Ce9KogjJPxIq6On8,33275
|
346
347
|
streamlit/static/static/css/5441.e3b876c5.chunk.css,sha256=XExLUUHInaWJp_m8TtBWhQ88SUuxZl6Jnnw5NA6rwI4,2633
|
347
348
|
streamlit/static/static/css/8148.49dfd2ce.chunk.css,sha256=LjBHDWjz8Hi0dr3DH9ujdlw4E2llc0xdDQHR64H4NQ8,12090
|
@@ -409,8 +410,8 @@ streamlit/static/static/js/9656.8c935274.chunk.js,sha256=3VB6NT0EQErJUX2SYLQpmNA
|
|
409
410
|
streamlit/static/static/js/9865.fd93213d.chunk.js,sha256=Ul2N951ZrAXpJOWo4SV4AKlymjMMNPJxpea3uRt8B_Y,4011
|
410
411
|
streamlit/static/static/js/9945.47d54f35.chunk.js,sha256=hhr3CT-A7_nboARJ6yPmoB69w1mljn8GzMnsyu-moZg,398776
|
411
412
|
streamlit/static/static/js/9945.47d54f35.chunk.js.LICENSE.txt,sha256=6s4mSSf8NHGJqUCFAj3VgMXZuNYyAzshKRhvxYZTQoU,281
|
412
|
-
streamlit/static/static/js/main.
|
413
|
-
streamlit/static/static/js/main.
|
413
|
+
streamlit/static/static/js/main.28e3c6e9.js,sha256=ZdgCwSmoNcUGFGq5az93njWzVX6BZZMECuTdsIOzPNQ,4425970
|
414
|
+
streamlit/static/static/js/main.28e3c6e9.js.LICENSE.txt,sha256=YTeqT7R6idssTgnyi3gf0tRiq18-LiPeDOpsWcnbi34,3184
|
414
415
|
streamlit/static/static/media/KaTeX_AMS-Regular.73ea273a72f4aca30ca5.woff2,sha256=DN04fJWQoan5eUVgAi27WWVKfYbxh6oMgUla1C06cwg,28076
|
415
416
|
streamlit/static/static/media/KaTeX_AMS-Regular.853be92419a6c3766b9a.ttf,sha256=aFNIQLz90r_7bw6N60hoTdAefwTqKBMmdXevuQbeHRM,63632
|
416
417
|
streamlit/static/static/media/KaTeX_AMS-Regular.d562e886c52f12660a41.woff,sha256=MNqR6EyJP4deJSaJ-uvcWQsocRReitx_mp1NvYzgslE,33516
|
@@ -500,7 +501,7 @@ streamlit/static/static/media/rocket.b75b17d2b0a063c6cea230d1a9d77f1e.svg,sha256
|
|
500
501
|
streamlit/testing/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
501
502
|
streamlit/testing/v1/__init__.py,sha256=XGxNOq4VfmwlVj9K6vXB8dAH1YbI_8AIsvw_vbzQoNA,690
|
502
503
|
streamlit/testing/v1/app_test.py,sha256=cRRGOX53EZKCZgl22OOzrCmEbgGsLDJ4tnIzhNXNL3A,36879
|
503
|
-
streamlit/testing/v1/element_tree.py,sha256=
|
504
|
+
streamlit/testing/v1/element_tree.py,sha256=IVwDBOpxiB9wb1QLCqOdXNfNVkdhP5o7Uw5NgLu00bA,60021
|
504
505
|
streamlit/testing/v1/local_script_runner.py,sha256=OSbOJJooiy70lkjYMqAytWm7X_12Ry7G1JZHaLl3-cI,6595
|
505
506
|
streamlit/testing/v1/util.py,sha256=IwxXIlGsVNtC1RmtmgdeBHmJYPjK0wiqNL4HMW6IJZI,1791
|
506
507
|
streamlit/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -511,7 +512,7 @@ streamlit/vendor/pympler/asizeof.py,sha256=noLIqizkYzTkYtA4k8fyvKeiIh8fW9ipW27YP
|
|
511
512
|
streamlit/watcher/__init__.py,sha256=Tn9E295dBAPIF38TAiWdfIoCsJWXU6rgY1FlxNmLqUU,915
|
512
513
|
streamlit/watcher/event_based_path_watcher.py,sha256=fLVVP7AU6IyTZ0D44RJqSmQowTkNQ18hkTcwOgFkP8I,14040
|
513
514
|
streamlit/watcher/local_sources_watcher.py,sha256=1Js7raiuMyqe-S6fqbXiTvgsxE2mx-_3xMAUv24lcTg,8642
|
514
|
-
streamlit/watcher/path_watcher.py,sha256
|
515
|
+
streamlit/watcher/path_watcher.py,sha256=-tb8m4PqRCk_4MdjDwC-3QND7pAH5kCqb_bsTO1xotI,5587
|
515
516
|
streamlit/watcher/polling_path_watcher.py,sha256=VwQ06abbvHSIuvR66YpFDx9ANhrzTmoQylKqSjUosFE,3822
|
516
517
|
streamlit/watcher/util.py,sha256=uDsWPxQ8WLNQ4U_MCqWm38H7BEjSrBpPsIZj1ySK8KM,5203
|
517
518
|
streamlit/web/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
@@ -529,9 +530,9 @@ streamlit/web/server/server_util.py,sha256=C3M971XFoEXTMufQLwHbZdtZOE30nWx-2WiXm
|
|
529
530
|
streamlit/web/server/stats_request_handler.py,sha256=47nQHe4ETsO9QS9FAEUF8rZigU_k5eACJZw4-jc8U6c,3684
|
530
531
|
streamlit/web/server/upload_file_request_handler.py,sha256=ftyKpARrUjOpRcFETIXuoTyOG_mo-ToOw5NI0y_W4lE,5003
|
531
532
|
streamlit/web/server/websocket_headers.py,sha256=07SkWLcOxbyldl7UcBzrMKY9ZojypCQACiKoh5FcH7Y,1870
|
532
|
-
streamlit_nightly-1.36.1.
|
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.
|
533
|
+
streamlit_nightly-1.36.1.dev20240703.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
|
534
|
+
streamlit_nightly-1.36.1.dev20240703.dist-info/METADATA,sha256=g40E07SpOEE-fGRxmO7QOfwv8fjq9IICBigBXU-KudI,8531
|
535
|
+
streamlit_nightly-1.36.1.dev20240703.dist-info/WHEEL,sha256=0XQbNV6JE5ziJsWjIU8TRRv0N6SohNonLWgP86g5fiI,109
|
536
|
+
streamlit_nightly-1.36.1.dev20240703.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
|
537
|
+
streamlit_nightly-1.36.1.dev20240703.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
|
538
|
+
streamlit_nightly-1.36.1.dev20240703.dist-info/RECORD,,
|