streamlit-nightly 1.35.1.dev20240610__py2.py3-none-any.whl → 1.35.1.dev20240612__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/__init__.py +5 -1
- streamlit/case_converters.py +2 -2
- streamlit/cli_util.py +2 -2
- streamlit/color_util.py +2 -2
- streamlit/commands/experimental_query_params.py +6 -8
- streamlit/commands/logo.py +4 -9
- streamlit/commands/navigation.py +6 -4
- streamlit/components/lib/local_component_registry.py +4 -2
- streamlit/components/types/base_component_registry.py +3 -2
- streamlit/components/v1/component_arrow.py +2 -1
- streamlit/components/v1/component_registry.py +6 -2
- streamlit/components/v1/components.py +4 -2
- streamlit/components/v1/custom_component.py +6 -6
- streamlit/config.py +15 -12
- streamlit/connections/snowflake_connection.py +2 -1
- streamlit/connections/snowpark_connection.py +2 -4
- streamlit/connections/sql_connection.py +2 -1
- streamlit/delta_generator.py +3 -4
- streamlit/elements/arrow.py +3 -6
- streamlit/elements/code.py +1 -1
- streamlit/elements/dialog_decorator.py +10 -8
- streamlit/elements/doc_string.py +1 -1
- streamlit/elements/exception.py +1 -1
- streamlit/elements/form.py +1 -1
- streamlit/elements/heading.py +1 -1
- streamlit/elements/html.py +1 -1
- streamlit/elements/image.py +5 -3
- streamlit/elements/layouts.py +36 -13
- streamlit/elements/lib/built_in_chart_utils.py +24 -12
- streamlit/elements/lib/column_config_utils.py +2 -1
- streamlit/elements/lib/dialog.py +8 -5
- streamlit/elements/lib/dicttools.py +3 -3
- streamlit/elements/lib/mutable_status_container.py +8 -5
- streamlit/elements/lib/pandas_styler_utils.py +2 -1
- streamlit/elements/lib/subtitle_utils.py +0 -1
- streamlit/elements/lib/utils.py +8 -10
- streamlit/elements/plotly_chart.py +5 -10
- streamlit/elements/pyplot.py +0 -1
- streamlit/elements/toast.py +2 -2
- streamlit/elements/vega_charts.py +46 -10
- streamlit/elements/widgets/color_picker.py +6 -4
- streamlit/elements/widgets/file_uploader.py +4 -8
- streamlit/elements/widgets/multiselect.py +2 -4
- streamlit/elements/widgets/number_input.py +4 -8
- streamlit/elements/widgets/select_slider.py +1 -1
- streamlit/elements/widgets/slider.py +2 -5
- streamlit/elements/widgets/time_widgets.py +5 -5
- streamlit/errors.py +1 -6
- streamlit/git_util.py +2 -2
- streamlit/hello/Animation_Demo.py +0 -1
- streamlit/logger.py +1 -1
- streamlit/navigation/page.py +6 -1
- streamlit/net_util.py +2 -5
- streamlit/proto/AutoRerun_pb2.py +3 -2
- streamlit/proto/Block_pb2.py +24 -22
- streamlit/proto/Block_pb2.pyi +19 -1
- streamlit/runtime/app_session.py +7 -7
- streamlit/runtime/caching/__init__.py +9 -13
- streamlit/runtime/caching/cache_data_api.py +18 -7
- streamlit/runtime/caching/cache_errors.py +8 -6
- streamlit/runtime/caching/cache_resource_api.py +10 -9
- streamlit/runtime/caching/cache_utils.py +10 -7
- streamlit/runtime/caching/cached_message_replay.py +10 -9
- streamlit/runtime/caching/hashing.py +3 -3
- streamlit/runtime/caching/storage/cache_storage_protocol.py +1 -1
- streamlit/runtime/connection_factory.py +4 -2
- streamlit/runtime/credentials.py +11 -20
- streamlit/runtime/forward_msg_cache.py +10 -11
- streamlit/runtime/forward_msg_queue.py +6 -4
- streamlit/runtime/fragment.py +7 -9
- streamlit/runtime/media_file_manager.py +4 -4
- streamlit/runtime/memory_media_file_storage.py +7 -8
- streamlit/runtime/metrics_util.py +2 -4
- streamlit/runtime/pages_manager.py +41 -41
- streamlit/runtime/runtime.py +4 -4
- streamlit/runtime/runtime_util.py +7 -12
- streamlit/runtime/scriptrunner/magic.py +1 -1
- streamlit/runtime/scriptrunner/script_requests.py +4 -2
- streamlit/runtime/scriptrunner/script_run_context.py +15 -15
- streamlit/runtime/scriptrunner/script_runner.py +8 -8
- streamlit/runtime/secrets.py +3 -5
- streamlit/runtime/session_manager.py +8 -7
- streamlit/runtime/state/common.py +1 -1
- streamlit/runtime/state/query_params_proxy.py +5 -10
- streamlit/runtime/state/safe_session_state.py +8 -7
- streamlit/runtime/state/widgets.py +27 -27
- streamlit/runtime/stats.py +1 -1
- streamlit/runtime/uploaded_file_manager.py +4 -2
- streamlit/runtime/websocket_session_manager.py +6 -4
- streamlit/static/asset-manifest.json +3 -3
- streamlit/static/index.html +1 -1
- streamlit/static/static/js/{8492.8ad745d1.chunk.js → 4335.b492cdb7.chunk.js} +1 -1
- streamlit/static/static/js/main.0ebf040e.js +2 -0
- streamlit/string_util.py +1 -1
- streamlit/testing/v1/app_test.py +4 -2
- streamlit/testing/v1/element_tree.py +33 -37
- streamlit/testing/v1/local_script_runner.py +7 -7
- streamlit/time_util.py +2 -4
- streamlit/type_util.py +16 -29
- streamlit/user_info.py +4 -2
- streamlit/util.py +1 -1
- streamlit/watcher/event_based_path_watcher.py +6 -3
- streamlit/watcher/local_sources_watcher.py +11 -7
- streamlit/web/bootstrap.py +1 -1
- streamlit/web/cache_storage_manager_config.py +5 -1
- streamlit/web/cli.py +9 -4
- streamlit/web/server/browser_websocket_handler.py +7 -8
- streamlit/web/server/component_request_handler.py +4 -2
- streamlit/web/server/routes.py +3 -3
- streamlit/web/server/server.py +12 -12
- streamlit/web/server/server_util.py +5 -6
- streamlit/web/server/stats_request_handler.py +1 -1
- streamlit/web/server/upload_file_request_handler.py +5 -3
- {streamlit_nightly-1.35.1.dev20240610.dist-info → streamlit_nightly-1.35.1.dev20240612.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.35.1.dev20240610.dist-info → streamlit_nightly-1.35.1.dev20240612.dist-info}/RECORD +120 -120
- streamlit/static/static/js/main.dc75074b.js +0 -2
- /streamlit/static/static/js/{main.dc75074b.js.LICENSE.txt → main.0ebf040e.js.LICENSE.txt} +0 -0
- {streamlit_nightly-1.35.1.dev20240610.data → streamlit_nightly-1.35.1.dev20240612.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.35.1.dev20240610.dist-info → streamlit_nightly-1.35.1.dev20240612.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.35.1.dev20240610.dist-info → streamlit_nightly-1.35.1.dev20240612.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.35.1.dev20240610.dist-info → streamlit_nightly-1.35.1.dev20240612.dist-info}/top_level.txt +0 -0
streamlit/web/server/server.py
CHANGED
@@ -287,22 +287,22 @@ class Server:
|
|
287
287
|
(
|
288
288
|
make_url_path_regex(base, STREAM_ENDPOINT),
|
289
289
|
BrowserWebSocketHandler,
|
290
|
-
|
290
|
+
{"runtime": self._runtime},
|
291
291
|
),
|
292
292
|
(
|
293
293
|
make_url_path_regex(base, HEALTH_ENDPOINT),
|
294
294
|
HealthHandler,
|
295
|
-
|
295
|
+
{"callback": lambda: self._runtime.is_ready_for_browser_connection},
|
296
296
|
),
|
297
297
|
(
|
298
298
|
make_url_path_regex(base, MESSAGE_ENDPOINT),
|
299
299
|
MessageCacheHandler,
|
300
|
-
|
300
|
+
{"cache": self._runtime.message_cache},
|
301
301
|
),
|
302
302
|
(
|
303
303
|
make_url_path_regex(base, METRIC_ENDPOINT),
|
304
304
|
StatsRequestHandler,
|
305
|
-
|
305
|
+
{"stats_manager": self._runtime.stats_mgr},
|
306
306
|
),
|
307
307
|
(
|
308
308
|
make_url_path_regex(base, HOST_CONFIG_ENDPOINT),
|
@@ -314,10 +314,10 @@ class Server:
|
|
314
314
|
rf"{UPLOAD_FILE_ENDPOINT}/(?P<session_id>[^/]+)/(?P<file_id>[^/]+)",
|
315
315
|
),
|
316
316
|
UploadFileRequestHandler,
|
317
|
-
|
318
|
-
file_mgr
|
319
|
-
is_active_session
|
320
|
-
|
317
|
+
{
|
318
|
+
"file_mgr": self._runtime.uploaded_file_mgr,
|
319
|
+
"is_active_session": self._runtime.is_active_session,
|
320
|
+
},
|
321
321
|
),
|
322
322
|
(
|
323
323
|
make_url_path_regex(base, f"{MEDIA_ENDPOINT}/(.*)"),
|
@@ -327,7 +327,7 @@ class Server:
|
|
327
327
|
(
|
328
328
|
make_url_path_regex(base, "component/(.*)"),
|
329
329
|
ComponentRequestHandler,
|
330
|
-
|
330
|
+
{"registry": self._runtime.component_registry},
|
331
331
|
),
|
332
332
|
]
|
333
333
|
|
@@ -337,9 +337,9 @@ class Server:
|
|
337
337
|
(
|
338
338
|
make_url_path_regex(base, SCRIPT_HEALTH_CHECK_ENDPOINT),
|
339
339
|
HealthHandler,
|
340
|
-
|
341
|
-
callback
|
342
|
-
|
340
|
+
{
|
341
|
+
"callback": lambda: self._runtime.does_script_run_without_error()
|
342
|
+
},
|
343
343
|
)
|
344
344
|
]
|
345
345
|
)
|
@@ -16,13 +16,14 @@
|
|
16
16
|
|
17
17
|
from __future__ import annotations
|
18
18
|
|
19
|
-
from typing import Final
|
19
|
+
from typing import TYPE_CHECKING, Final
|
20
20
|
from urllib.parse import urljoin
|
21
21
|
|
22
|
-
import tornado.web
|
23
|
-
|
24
22
|
from streamlit import config, net_util, url_util
|
25
23
|
|
24
|
+
if TYPE_CHECKING:
|
25
|
+
from tornado.web import RequestHandler
|
26
|
+
|
26
27
|
# The port reserved for internal development.
|
27
28
|
DEVELOPMENT_PORT: Final = 3000
|
28
29
|
|
@@ -120,9 +121,7 @@ def _get_browser_address_bar_port() -> int:
|
|
120
121
|
return int(config.get_option("browser.serverPort"))
|
121
122
|
|
122
123
|
|
123
|
-
def emit_endpoint_deprecation_notice(
|
124
|
-
handler: tornado.web.RequestHandler, new_path: str
|
125
|
-
) -> None:
|
124
|
+
def emit_endpoint_deprecation_notice(handler: RequestHandler, new_path: str) -> None:
|
126
125
|
"""
|
127
126
|
Emits the warning about deprecation of HTTP endpoint in the HTTP header.
|
128
127
|
"""
|
@@ -18,11 +18,11 @@ from typing import TYPE_CHECKING
|
|
18
18
|
|
19
19
|
import tornado.web
|
20
20
|
|
21
|
-
from streamlit.runtime.stats import CacheStat, StatsManager
|
22
21
|
from streamlit.web.server.server_util import emit_endpoint_deprecation_notice
|
23
22
|
|
24
23
|
if TYPE_CHECKING:
|
25
24
|
from streamlit.proto.openmetrics_data_model_pb2 import MetricSet as MetricSetProto
|
25
|
+
from streamlit.runtime.stats import CacheStat, StatsManager
|
26
26
|
|
27
27
|
|
28
28
|
class StatsRequestHandler(tornado.web.RequestHandler):
|
@@ -14,16 +14,18 @@
|
|
14
14
|
|
15
15
|
from __future__ import annotations
|
16
16
|
|
17
|
-
from typing import Any, Callable
|
17
|
+
from typing import TYPE_CHECKING, Any, Callable
|
18
18
|
|
19
19
|
import tornado.httputil
|
20
20
|
import tornado.web
|
21
21
|
|
22
22
|
from streamlit import config
|
23
|
-
from streamlit.runtime.memory_uploaded_file_manager import MemoryUploadedFileManager
|
24
23
|
from streamlit.runtime.uploaded_file_manager import UploadedFileRec
|
25
24
|
from streamlit.web.server import routes, server_util
|
26
25
|
|
26
|
+
if TYPE_CHECKING:
|
27
|
+
from streamlit.runtime.memory_uploaded_file_manager import MemoryUploadedFileManager
|
28
|
+
|
27
29
|
|
28
30
|
class UploadFileRequestHandler(tornado.web.RequestHandler):
|
29
31
|
"""Implements the POST /upload_file endpoint."""
|
@@ -98,7 +100,7 @@ class UploadFileRequestHandler(tornado.web.RequestHandler):
|
|
98
100
|
|
99
101
|
try:
|
100
102
|
if not self._is_active_session(session_id):
|
101
|
-
raise Exception(
|
103
|
+
raise Exception("Invalid session_id")
|
102
104
|
except Exception as e:
|
103
105
|
self.send_error(400, reason=str(e))
|
104
106
|
return
|
@@ -1,129 +1,129 @@
|
|
1
|
-
streamlit/__init__.py,sha256=
|
1
|
+
streamlit/__init__.py,sha256=G-EFEKQYkh_Zth9yv-nmyKw8K-CNyhG0w0to0cTZqn8,8788
|
2
2
|
streamlit/__main__.py,sha256=8vHowjccJfFMwrA22IEe3ynE9F670mkspbo9rYdM0ks,868
|
3
|
-
streamlit/case_converters.py,sha256=
|
4
|
-
streamlit/cli_util.py,sha256=
|
3
|
+
streamlit/case_converters.py,sha256=SprbXtdNr0syzbUPeClp7KE5dSKOiAo-5FWENCW08Do,2468
|
4
|
+
streamlit/cli_util.py,sha256=P7A6R9D8whD9mytXHAfIax18hrxweUk5Ma8Klb99SeY,1420
|
5
5
|
streamlit/code_util.py,sha256=ALUWXQlQhgp9gUqp7X3ivY240NDEsfQSZUrFcNZ3sK4,2395
|
6
|
-
streamlit/color_util.py,sha256=
|
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=qr646IfPIPvxkus45HRj0AgfSY_Nw7Dq66NlVohp7t0,43855
|
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/delta_generator.py,sha256=
|
13
|
+
streamlit/delta_generator.py,sha256=gKDLcrwd36bwRvOESD8EYOZOPHvDSmva1mdmGK5Hrjs,28192
|
14
14
|
streamlit/deprecation_util.py,sha256=3JxWWS424v1kQ-qOq-9sQNYPQ8_UERH3QpYtkWxLP74,6516
|
15
15
|
streamlit/development.py,sha256=iO-KQc62Do9uSwoa5vV2tfImqz3QPhJ1Md6DETcnHkc,813
|
16
16
|
streamlit/echo.py,sha256=s0tT_IXxh7BLHOapRS8syE5Tnm4Djm3-oKO0J0MY1wI,4077
|
17
17
|
streamlit/emojis.py,sha256=NlcPqVtDyUQmq9eLJVncvPtDQz3L1vYy3vz_vd_f1h0,73749
|
18
18
|
streamlit/env_util.py,sha256=fqea8xmj4ifsuqmLv3Pvlq4t5y6WVTBua4qRpVTbs5Y,1791
|
19
19
|
streamlit/error_util.py,sha256=Xx19JaBKF-MKHleuPY6TX3Xo_1fSd3ZqZuhvSz-B3LM,3598
|
20
|
-
streamlit/errors.py,sha256=
|
20
|
+
streamlit/errors.py,sha256=k9gW3W2d99h5Hlkl3bc-DNjkM5s6s3Ni1AZps5idHAE,3819
|
21
21
|
streamlit/file_util.py,sha256=jwAlXtGNEwy335Ct9l14YHqxMuCWGSwgePesj7vNyLg,7216
|
22
22
|
streamlit/folder_black_list.py,sha256=Ji9UZ4PtrilLxmvb8W57SIEK7AkeLGEqqtqr4y2oscI,2342
|
23
|
-
streamlit/git_util.py,sha256=
|
23
|
+
streamlit/git_util.py,sha256=tVRinRwVqJDtJAJOr9d_PuFNbGJKPpo34xpxJTUnfZ0,5261
|
24
24
|
streamlit/js_number.py,sha256=21VdJozG82xyZauYrdR819tb8mNNBxu-YzTXRBmLFgo,3524
|
25
|
-
streamlit/logger.py,sha256=
|
25
|
+
streamlit/logger.py,sha256=U1jcoGLZ6kN1aeLy26tjGVWEAAl_uOKcW22wKCLgHbk,3987
|
26
26
|
streamlit/material_icon_names.py,sha256=zZ37bxxkwxuaYPjPgFmoMJxGsrV1Q5iVlbUKy9j9vy4,57136
|
27
|
-
streamlit/net_util.py,sha256=
|
27
|
+
streamlit/net_util.py,sha256=scbHlkw00wp2CmuSydv8Muz-hVjtbaM6WAyzvFPn6mE,3221
|
28
28
|
streamlit/platform.py,sha256=KOj3Scd1UxYF5K7460bwYjhRHBb_K_Pk_ed5Z3aJ5_4,1104
|
29
29
|
streamlit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
30
|
streamlit/source_util.py,sha256=2KOVrEhBATVh9M_bnbg9OwWPORg1riCB63JzE7g8oK0,6145
|
31
|
-
streamlit/string_util.py,sha256=
|
31
|
+
streamlit/string_util.py,sha256=x1ZuLlorPMNUpOZYMAN1VLdxViJwfPcXQ99PKRn0pyg,6347
|
32
32
|
streamlit/temporary_directory.py,sha256=eBv5q0CR9GApa-itZBaGtqQKMl248H0HojEVKzkS9cc,1627
|
33
|
-
streamlit/time_util.py,sha256=
|
34
|
-
streamlit/type_util.py,sha256=
|
33
|
+
streamlit/time_util.py,sha256=zPDirzZDAOPzGogHy-4wOalfBb7zCNCvFEfkZf03otc,2836
|
34
|
+
streamlit/type_util.py,sha256=0sRlyamlv31HzIt0aaOccpd1U9dtB4ghaFoVgV4gKZc,48505
|
35
35
|
streamlit/url_util.py,sha256=iU1lpZhzW4ZjhjBhSdw39OzixnThIsxhXpDP-ZIgUT8,3019
|
36
|
-
streamlit/user_info.py,sha256=
|
37
|
-
streamlit/util.py,sha256=
|
36
|
+
streamlit/user_info.py,sha256=IHz9_yOFm1_MmwCr0Je1xk7auCfr8KfkOB9ixIfzn4E,3510
|
37
|
+
streamlit/util.py,sha256=0Phev7Lytvcy_eqIjpoGl2-7mOODwAwArY2zJpavEh8,6375
|
38
38
|
streamlit/version.py,sha256=dAqFbNh-ln7p47GRRDVHuqag-JZUYpMe47uqFxVb7Tw,763
|
39
39
|
streamlit/commands/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
40
40
|
streamlit/commands/execution_control.py,sha256=H2Xb9ou_9nXmusEcK0ZuE0ct8StuE50Hse9Tm0T1r-I,5711
|
41
|
-
streamlit/commands/experimental_query_params.py,sha256=
|
42
|
-
streamlit/commands/logo.py,sha256=
|
43
|
-
streamlit/commands/navigation.py,sha256=
|
41
|
+
streamlit/commands/experimental_query_params.py,sha256=axNJrNpOICoUCVXORo8rvq0l7EBoCGKd10s-wAopxMY,4980
|
42
|
+
streamlit/commands/logo.py,sha256=H3Rlk45D38mfAsk7t_E4wQOq76wn9FKdUKeeNH73Rf8,5682
|
43
|
+
streamlit/commands/navigation.py,sha256=XwjC8YHBxnu8SBqlKJ34sVg129Gm3Up5C-hbHP3p3EA,7012
|
44
44
|
streamlit/commands/page_config.py,sha256=FJXZ4MvNlgeVC3QUmE9vagHSfTvHaXoBxuXTuJrVSog,12997
|
45
45
|
streamlit/components/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
46
46
|
streamlit/components/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
47
|
-
streamlit/components/lib/local_component_registry.py,sha256=
|
47
|
+
streamlit/components/lib/local_component_registry.py,sha256=xm2pD0lcUzWyQnLaJAl6KQmoU2OSvGilgheMXDoLBeM,3016
|
48
48
|
streamlit/components/types/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
49
|
-
streamlit/components/types/base_component_registry.py,sha256=
|
49
|
+
streamlit/components/types/base_component_registry.py,sha256=Zw8uO9qTKcpYJokkML_80phRPCi2jL6UHZfh5y0yHoQ,3137
|
50
50
|
streamlit/components/types/base_custom_component.py,sha256=a8fvmmf8DN18fhezsdgkr9Bzi4ue7G_TUG66sBSbsp0,4262
|
51
51
|
streamlit/components/v1/__init__.py,sha256=I7xa1wfGQY84U_nWWsq1i_HO5kCQ7f0BE5_dEQUiWRw,1027
|
52
|
-
streamlit/components/v1/component_arrow.py,sha256=
|
53
|
-
streamlit/components/v1/component_registry.py,sha256=
|
54
|
-
streamlit/components/v1/components.py,sha256=
|
55
|
-
streamlit/components/v1/custom_component.py,sha256=
|
52
|
+
streamlit/components/v1/component_arrow.py,sha256=5v0pSPO97cmfQ7pvdEqo43UFLepI6KhefHq7zta5wjc,4130
|
53
|
+
streamlit/components/v1/component_registry.py,sha256=BaarKTkat5qRywVZeGFP1J98XPYT1qE3mLcJfFoSP78,4261
|
54
|
+
streamlit/components/v1/components.py,sha256=c4JAnZZ_lEhbjavDVpuy_6unWKxn47-Ke27kiGx00xI,1318
|
55
|
+
streamlit/components/v1/custom_component.py,sha256=VacostE60W9KnryQqvTF3KxOAXJCkQxzNVwkcON5iZw,9361
|
56
56
|
streamlit/connections/__init__.py,sha256=WSOEtrwhiNYti89iCk3O7I83rurZl8gXoM8tA2d_E-U,1083
|
57
57
|
streamlit/connections/base_connection.py,sha256=8rzoGovDem0o3FzJTikP0IRdL7i3lBqHhyESBnER9no,7465
|
58
|
-
streamlit/connections/snowflake_connection.py,sha256=
|
59
|
-
streamlit/connections/snowpark_connection.py,sha256=
|
60
|
-
streamlit/connections/sql_connection.py,sha256=
|
58
|
+
streamlit/connections/snowflake_connection.py,sha256=0fM-Lpg3GnB4jVVQEhMeJcIQs6GlNy-emgrSlPodUTo,12522
|
59
|
+
streamlit/connections/snowpark_connection.py,sha256=SK06E4rLF7iJBn8wTnB7Gih6y3HxZB1ghP7a7kXTX9k,8066
|
60
|
+
streamlit/connections/sql_connection.py,sha256=ceUwbCZGdCMwypnnTpAJpVtLGZV_CxzmC7NeOFWT7yM,12239
|
61
61
|
streamlit/connections/util.py,sha256=3Ryc93a5KstsVwQl6ug5cmb8F-WQoD4c0mBWNPLoFsY,3022
|
62
62
|
streamlit/elements/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
63
63
|
streamlit/elements/alert.py,sha256=nf_Pyr6s7ms8DNDp21__qSsZUddul_mHuXUR7e6rCZk,7432
|
64
|
-
streamlit/elements/arrow.py,sha256
|
64
|
+
streamlit/elements/arrow.py,sha256=arZKQaHOfr2amhD8_OrsuQjlCFbb-fhGs38yoLTLQuk,27584
|
65
65
|
streamlit/elements/balloons.py,sha256=QnORgG96Opga1SVg8tUBOm-l3nMpKWmjvy1crcS2XaU,1482
|
66
66
|
streamlit/elements/bokeh_chart.py,sha256=UffqDmO_yyMG-a8t2QzWEsxxpJteFaNRGXWrci0fFPc,4257
|
67
|
-
streamlit/elements/code.py,sha256=
|
67
|
+
streamlit/elements/code.py,sha256=z63aR1xrYPyUBaFNyLbn5m1cY-KYIC7eJPg6qHGy4Ek,2480
|
68
68
|
streamlit/elements/deck_gl_json_chart.py,sha256=6Vm-d6fzxbT0KW5Hxhc2E9sw2YG10BCUnvwUWUlJN9g,6896
|
69
|
-
streamlit/elements/dialog_decorator.py,sha256=
|
70
|
-
streamlit/elements/doc_string.py,sha256=
|
69
|
+
streamlit/elements/dialog_decorator.py,sha256=1StWw48jc5HsWNlepnh3-4bWXpLhzJN1vrmhvx75S5c,8051
|
70
|
+
streamlit/elements/doc_string.py,sha256=Bc-3His1071cFfrpidgE5HUgolAd3mzEZJIQ3dyyFe4,16172
|
71
71
|
streamlit/elements/empty.py,sha256=VyYZAeipAt73mYYYTobMlIQa6GWq6xfVHtEaK4VOpUA,3853
|
72
|
-
streamlit/elements/exception.py,sha256=
|
73
|
-
streamlit/elements/form.py,sha256=
|
72
|
+
streamlit/elements/exception.py,sha256=O2i45dgHlQfugToe5J2TS0ioun5EmAnu41p_lOWNVKQ,9139
|
73
|
+
streamlit/elements/form.py,sha256=jbkeyO_sU0a8ZuutlnYENakLApKI0pKTMzuf4AXy-98,12422
|
74
74
|
streamlit/elements/graphviz_chart.py,sha256=iNi_M94FZIGiiIfhzmjHWaBq4gAHGjcgokH-Ri1qHyI,4887
|
75
|
-
streamlit/elements/heading.py,sha256=
|
76
|
-
streamlit/elements/html.py,sha256=
|
75
|
+
streamlit/elements/heading.py,sha256=P138T1fMR0AKESewo8lOxn_PIFGACroj_VrOP1QZ2fA,11272
|
76
|
+
streamlit/elements/html.py,sha256=ghdwA5GmTCrSllTK_bWSdFISZnVq6HkuekkuAiZ2RiE,2805
|
77
77
|
streamlit/elements/iframe.py,sha256=xY34YwgC_kTwRaEw1bvOJj0iQLvnpo8wGvUPSSkpmug,4383
|
78
|
-
streamlit/elements/image.py,sha256=
|
78
|
+
streamlit/elements/image.py,sha256=QqYMR36L29LL9f6Dcmw73Mn2V1oqh6aI38Efs9rI_Ew,20416
|
79
79
|
streamlit/elements/json.py,sha256=d1PHLaHDsrgQEv__KspWvwIvcufru_v5L871qEPStWM,3365
|
80
|
-
streamlit/elements/layouts.py,sha256=
|
80
|
+
streamlit/elements/layouts.py,sha256=so2rrTeJIMsyURHHS8YakuBz8kQ8VL-UrzErWzfJQRc,29655
|
81
81
|
streamlit/elements/map.py,sha256=aUvDBQ5afVN9HruH43DFwRheGvnwuwy_vTO3HD4F3zo,16639
|
82
82
|
streamlit/elements/markdown.py,sha256=gL_6MVMTysJFm_aHLimyJVj6BmGdhuGRnemvbzcquAc,10384
|
83
83
|
streamlit/elements/media.py,sha256=svqoP1loCHK7UOXVk8XfwHYjQ8HMCsSO2VTkCvPVRhY,29682
|
84
84
|
streamlit/elements/metric.py,sha256=2kTFp8T-_s2z49uBTiD6zc9y_YMET1KQG08dm0XfjQo,10118
|
85
|
-
streamlit/elements/plotly_chart.py,sha256=
|
85
|
+
streamlit/elements/plotly_chart.py,sha256=6wMs6EV7eeTSdVI_FbOpLo_luYHv1KSGKx0zPwAjLgg,19272
|
86
86
|
streamlit/elements/progress.py,sha256=7PbyifyZ4vqYijBonXWLsujST3mVaKVyMaYvP3yinEk,5844
|
87
|
-
streamlit/elements/pyplot.py,sha256=
|
87
|
+
streamlit/elements/pyplot.py,sha256=sS84CJuO1ENnF0DyYSnlWoeDKb4w22Q_fMAqMCylniQ,6821
|
88
88
|
streamlit/elements/snow.py,sha256=WHqk8zmfOr5iD0R-wLlAdlIkDDbiaayguTVmA4e7V_Q,1439
|
89
89
|
streamlit/elements/spinner.py,sha256=ZMJlO-J77lpQZbRPvqJ80ur9u11dBUwJr6JgDct8TLY,2934
|
90
90
|
streamlit/elements/text.py,sha256=-g2LYiJpP2OAdllpd7Df9rhTehIOEuiZN7-u1jwKEio,1856
|
91
|
-
streamlit/elements/toast.py,sha256=
|
92
|
-
streamlit/elements/vega_charts.py,sha256=
|
91
|
+
streamlit/elements/toast.py,sha256=LNGS-fP763t7cEI6CYSihUSrJouzIkonRDUoqXdzU9M,4339
|
92
|
+
streamlit/elements/vega_charts.py,sha256=3ScsST5Fuc-gK8GDOxXYWZZ6nRpSZHzAwNgimDDcn_Y,72071
|
93
93
|
streamlit/elements/write.py,sha256=OiUp9NCTlyzLLn885Dwq05YsFaZtB6sfYw30eJHnwg4,20939
|
94
94
|
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
|
95
|
+
streamlit/elements/lib/built_in_chart_utils.py,sha256=8grrM7Cs1_qRpElQWimTpOU6gwHKf6DYi5kKrMzJ4y4,31135
|
96
|
+
streamlit/elements/lib/column_config_utils.py,sha256=-33zN3dALfvBdV0KAaLMpXNv7xwNrekCoG2r-pmr3B8,17379
|
97
97
|
streamlit/elements/lib/column_types.py,sha256=DkSw7CyFKjjjC_cqBNwNFr15C2oyGILOYBshp3-lCCo,51174
|
98
|
-
streamlit/elements/lib/dialog.py,sha256=
|
99
|
-
streamlit/elements/lib/dicttools.py,sha256=
|
98
|
+
streamlit/elements/lib/dialog.py,sha256=qaQjJNeaXanqCBtJ-rDv1vY2oCLRSiigdi7qKtYaldw,5732
|
99
|
+
streamlit/elements/lib/dicttools.py,sha256=9zXu6Z5Ky4ul74RBGB8Roi5LDoB_GTo_0vd2GNSnohQ,3827
|
100
100
|
streamlit/elements/lib/event_utils.py,sha256=wJaZxBH-x9icnWmDuO9ukIQhHek9T2rcxlrD7UVzmvk,1496
|
101
|
-
streamlit/elements/lib/mutable_status_container.py,sha256=
|
102
|
-
streamlit/elements/lib/pandas_styler_utils.py,sha256=
|
101
|
+
streamlit/elements/lib/mutable_status_container.py,sha256=NThW1tmbkaI6QDv6L4AgPr1z_w9K6GPMhymVa3gRGas,6672
|
102
|
+
streamlit/elements/lib/pandas_styler_utils.py,sha256=VJI5a2HQxQh_nOQmsLqSag_Xs9G4vLAFrv6UWqL8BcE,8084
|
103
103
|
streamlit/elements/lib/policies.py,sha256=BmVPXlvYR7khygyy4z-O4a7bucUdkH3sPvQvkc7XCcc,5343
|
104
104
|
streamlit/elements/lib/streamlit_plotly_theme.py,sha256=DgMP_PWTfFO5J__q8bGxoT3ey5z727582wDD_u3UaPU,8307
|
105
|
-
streamlit/elements/lib/subtitle_utils.py,sha256=
|
106
|
-
streamlit/elements/lib/utils.py,sha256
|
105
|
+
streamlit/elements/lib/subtitle_utils.py,sha256=ciPgQ6Yi3NS7OdFgDH6lGFwDZpv022flEyQKY5lHNiE,6245
|
106
|
+
streamlit/elements/lib/utils.py,sha256=-qSsOqspqHU-UbkU0W3wYzPZznczRoP1qwJF1u8MnC4,4956
|
107
107
|
streamlit/elements/widgets/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
108
108
|
streamlit/elements/widgets/button.py,sha256=mL-45Jti0tp69HYmHVFhUMYdCucoBJXIZqk9oQtXRrM,34062
|
109
109
|
streamlit/elements/widgets/camera_input.py,sha256=sb3QIklg9ZSFf57paxbdBXK_nPmuz1tOiypPtJzCyH0,9262
|
110
110
|
streamlit/elements/widgets/chat.py,sha256=xnSFN8scw5rAiGYCfdg4jEo06m2Oga3G6xaZGeDaph4,14364
|
111
111
|
streamlit/elements/widgets/checkbox.py,sha256=-RxCOfGzVajFgGfuAiligKxRc-ClMEUDHpzGEw10W0w,12694
|
112
|
-
streamlit/elements/widgets/color_picker.py,sha256=
|
112
|
+
streamlit/elements/widgets/color_picker.py,sha256=oPItMUwdm4CZTb-nQ5Wxj6LOSaAr--LPLivMQFKreEQ,9285
|
113
113
|
streamlit/elements/widgets/data_editor.py,sha256=j5ZQ6d1XujjaYUdTjkC6vXtnbRiYCZQcHnbKTDnQEWw,36489
|
114
|
-
streamlit/elements/widgets/file_uploader.py,sha256=
|
115
|
-
streamlit/elements/widgets/multiselect.py,sha256=
|
116
|
-
streamlit/elements/widgets/number_input.py,sha256=
|
114
|
+
streamlit/elements/widgets/file_uploader.py,sha256=JyB-VKblAOdMMkdm_7vuEYFY_w_jZae9bJlURFVH8NU,17745
|
115
|
+
streamlit/elements/widgets/multiselect.py,sha256=ywfPh4nU6M_xzRzn1cZr5hGTHnCnVuus8d_ZcIPPPKY,13874
|
116
|
+
streamlit/elements/widgets/number_input.py,sha256=lYEHr62tOlwG1j031ar5kSHr5u3BGW5PpWXEVAcS884,18021
|
117
117
|
streamlit/elements/widgets/radio.py,sha256=fElZDC-TmFvBqIWCgzSlPeak3jVu4bEGMDab970xgdU,12954
|
118
|
-
streamlit/elements/widgets/select_slider.py,sha256=
|
118
|
+
streamlit/elements/widgets/select_slider.py,sha256=qJjEg5LT_gisAz7XAxwexiX9WfOBQ3NAf75_gDgbYXs,13489
|
119
119
|
streamlit/elements/widgets/selectbox.py,sha256=lED-m7z6lkbk802PueZ4LSeL7Li9h-RphFk3hXDZhug,11827
|
120
|
-
streamlit/elements/widgets/slider.py,sha256=
|
120
|
+
streamlit/elements/widgets/slider.py,sha256=qTAiPcmm4A7hyvggmVtDpmZNrLb_CWf9_wOdgHoptKk,26721
|
121
121
|
streamlit/elements/widgets/text_widgets.py,sha256=U-YI4KFisa8gHQx0-CPP0Qf3IVPP2SD_cz4wBWmXHgs,22501
|
122
|
-
streamlit/elements/widgets/time_widgets.py,sha256
|
122
|
+
streamlit/elements/widgets/time_widgets.py,sha256=J5UxYGXpmm7UZ24HtswuywabsEbDbIxjyJfoBUCM4sg,30170
|
123
123
|
streamlit/external/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
124
124
|
streamlit/external/langchain/__init__.py,sha256=sAzaNf4Cje3cJikPBVvF7pj1sEdEvUfKIEY_Z6Zk8cA,814
|
125
125
|
streamlit/external/langchain/streamlit_callback_handler.py,sha256=Q4RRYmYOj4zJjvM7aP8OCqSM7w9SHwfHP7dg9S0QGmA,15301
|
126
|
-
streamlit/hello/Animation_Demo.py,sha256=
|
126
|
+
streamlit/hello/Animation_Demo.py,sha256=36WQKLmFqNLtG5GYM-cU0DVCRJoiAm4Q1k7Qe2f6owE,2955
|
127
127
|
streamlit/hello/Dataframe_Demo.py,sha256=G0c3h04Kk8sHcY63AIKHcCWLSqoZiHTFgjGGRAOGCN8,2527
|
128
128
|
streamlit/hello/Hello.py,sha256=dNr74BkA5j_nTDd0ikgPmKHuWGuTN2eB-4Q2_TiaO6k,1528
|
129
129
|
streamlit/hello/Mapping_Demo.py,sha256=egi6UYVnSwURc_jJMY3L4vjc94_VBo0KveLJmy9_j2Y,3826
|
@@ -132,7 +132,7 @@ streamlit/hello/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,6
|
|
132
132
|
streamlit/hello/streamlit_app.py,sha256=KTc8e_60aQL8v9WscsVHws5JPLIxqJ94Ldt-GKnuGsU,1073
|
133
133
|
streamlit/hello/utils.py,sha256=IZMM6MZ4tcrLuSN9RWmMEYlzTbbzA3trpq6Pa82NeRw,992
|
134
134
|
streamlit/navigation/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
135
|
-
streamlit/navigation/page.py,sha256=
|
135
|
+
streamlit/navigation/page.py,sha256=fnnz8XVDxaoOldK909VYOFZWJAl8CsNa7zSjtx1N2iA,7278
|
136
136
|
streamlit/proto/Alert_pb2.py,sha256=rGlkoiE7c-gmZbYpuhRdFmRkYLcR3AmdHH3lHw8q1-E,1565
|
137
137
|
streamlit/proto/Alert_pb2.pyi,sha256=sf1JHN92JSQs2_15clCjEfBGPByTTG-FSSZ-qGjWLXk,3106
|
138
138
|
streamlit/proto/AppPage_pb2.py,sha256=zc06HvAElRirQavLwn0TzwJFhB3kvYRxSRdCS1P9ozE,1443
|
@@ -145,14 +145,14 @@ streamlit/proto/Arrow_pb2.py,sha256=GRvs4LJ9bxhYsLRENXoaBUKBIUTHTj35Mnj4-dGH84U,
|
|
145
145
|
streamlit/proto/Arrow_pb2.pyi,sha256=aub9Vhp-2Wi3MmD6jhrNEybLZkzzo3jdYzXE25jtFHI,7614
|
146
146
|
streamlit/proto/Audio_pb2.py,sha256=aXKrNYzdypBZByAF8c4IEJCAmXbX8MxUtwTmnDcQwdI,1492
|
147
147
|
streamlit/proto/Audio_pb2.pyi,sha256=EIH7JT5WIGtdVopk1nmrUvaclBTzzEMjvADDaxKaX7Y,2073
|
148
|
-
streamlit/proto/AutoRerun_pb2.py,sha256=
|
148
|
+
streamlit/proto/AutoRerun_pb2.py,sha256=6yfVi1ELwyubHsn9NN8jVjp8kGPPFGC5jA60Y8Wb1n8,1287
|
149
149
|
streamlit/proto/AutoRerun_pb2.pyi,sha256=dyvS55WLzdiQukK_oB01fJRq0IFshtymyz6TH_fqi_g,1461
|
150
150
|
streamlit/proto/BackMsg_pb2.py,sha256=T5alnReu-XqSoUPFhL2-ejUdGBqjCoeHEgzHJagVXSw,2192
|
151
151
|
streamlit/proto/BackMsg_pb2.pyi,sha256=I5vOI8rrdM9jlQfF6JAFPtXYXSfp8dA2JJ8B8i9JDZc,5121
|
152
152
|
streamlit/proto/Balloons_pb2.py,sha256=SdFGy06hEcjhIFgMZNSaj1B6A2kd3L-ON_OZay-cJGI,1277
|
153
153
|
streamlit/proto/Balloons_pb2.pyi,sha256=PbpqD5_g3GjGb5IN3YiuC9jGJL4thO5XubM8KbH7UEU,1302
|
154
|
-
streamlit/proto/Block_pb2.py,sha256=
|
155
|
-
streamlit/proto/Block_pb2.pyi,sha256=
|
154
|
+
streamlit/proto/Block_pb2.py,sha256=UuGYocgG3JgZsSG5gAFs972yca67VsqOTi4V1-CMnwU,4922
|
155
|
+
streamlit/proto/Block_pb2.pyi,sha256=vBKU78uCGSqdNg4O-hrrebAYCdoNIoRlCpOyHcOku20,13148
|
156
156
|
streamlit/proto/BokehChart_pb2.py,sha256=5bYTs9OyXijfSgXLm42vYBVah0qcpp6dwtHlQO9sAp0,1337
|
157
157
|
streamlit/proto/BokehChart_pb2.pyi,sha256=JPTaxvhwu5nnDXjF5UV0vwPOpZln9gUzHumAwCQMG_c,1731
|
158
158
|
streamlit/proto/Button_pb2.py,sha256=8RSlN8PvBDOgvLn2bxWjnXoIboEekZi2vtnbBSqyv1E,1558
|
@@ -287,59 +287,59 @@ streamlit/proto/__init__.py,sha256=tM42Nl1HAphMoWU8F7noymVPJLj3dEnqqIitEQCr2XE,6
|
|
287
287
|
streamlit/proto/openmetrics_data_model_pb2.py,sha256=dWlhXENjgvIGCMnAumDVQkLA4TQQzP77G5pncI6oP9I,6424
|
288
288
|
streamlit/proto/openmetrics_data_model_pb2.pyi,sha256=dmABrepaNR5S9kA1UPfQGXqY_ARAUuLmQBqG1Xn_HUY,20319
|
289
289
|
streamlit/runtime/__init__.py,sha256=Xx5OVY9Nv8Z6ndbYtJBm3lgR2pn83omEOlDaSl9V2dE,1523
|
290
|
-
streamlit/runtime/app_session.py,sha256=
|
291
|
-
streamlit/runtime/connection_factory.py,sha256=
|
292
|
-
streamlit/runtime/credentials.py,sha256=
|
293
|
-
streamlit/runtime/forward_msg_cache.py,sha256=
|
294
|
-
streamlit/runtime/forward_msg_queue.py,sha256=
|
295
|
-
streamlit/runtime/fragment.py,sha256=
|
296
|
-
streamlit/runtime/media_file_manager.py,sha256=
|
290
|
+
streamlit/runtime/app_session.py,sha256=tsEfKd7ExJ9pjYoc92-oKXE3wE_XPKbaZkVVoQnYPYw,37258
|
291
|
+
streamlit/runtime/connection_factory.py,sha256=hrDAlltHMgW8uYFdiER-wBFg_9KrTBrXVmjb_BgxX1k,12452
|
292
|
+
streamlit/runtime/credentials.py,sha256=oMUw4SWHMbk-b4Z7tGWWLQIZBsFF-4xDBjbxzNNJ8x8,11333
|
293
|
+
streamlit/runtime/forward_msg_cache.py,sha256=Oj-c3BhTRLrXhGBzX21ioq8gTsN4nqjyRL0jr4TqlZk,9750
|
294
|
+
streamlit/runtime/forward_msg_queue.py,sha256=xiH-ZRVOswiABLEyChJbfkIGBACy2l8nQKueL6bkrJc,6420
|
295
|
+
streamlit/runtime/fragment.py,sha256=TcRWNI4ZgJ5SwGcvRYJfZvbHp2kSol9gDU-UExrKGWw,13069
|
296
|
+
streamlit/runtime/media_file_manager.py,sha256=3oHbB6Hs9wMa6z6tuF1NkyQkUaBOm8V6ogWxj56IcS8,8508
|
297
297
|
streamlit/runtime/media_file_storage.py,sha256=hQkMC__XRjshEUD73QCSrX3vrfOOO0U7Vf1Uc6qiP90,4375
|
298
|
-
streamlit/runtime/memory_media_file_storage.py,sha256=
|
298
|
+
streamlit/runtime/memory_media_file_storage.py,sha256=9jzWImu9qCUGbJ61c4UhkxRSAPvHLFxNdaPiICPKQtU,6277
|
299
299
|
streamlit/runtime/memory_session_storage.py,sha256=Tx-_3oUg6i9UokpBUIWvqhpWE0WmjtX764KdOzNvDMs,2940
|
300
300
|
streamlit/runtime/memory_uploaded_file_manager.py,sha256=rCLvdZv2nPlWeCiHnwV8phcVV43mUCgW7BaWkmEXgpM,4422
|
301
|
-
streamlit/runtime/metrics_util.py,sha256=
|
302
|
-
streamlit/runtime/pages_manager.py,sha256=
|
303
|
-
streamlit/runtime/runtime.py,sha256=
|
304
|
-
streamlit/runtime/runtime_util.py,sha256=
|
301
|
+
streamlit/runtime/metrics_util.py,sha256=BmPUOXMf33GhohI9wGrYf4ZLstTxWD2fNQQmyhsO7ic,15179
|
302
|
+
streamlit/runtime/pages_manager.py,sha256=86GpkkRCNxRsgH-Kq10GLmjsTPgKX-ua42YfL8CsLq8,14123
|
303
|
+
streamlit/runtime/runtime.py,sha256=gUDK50PLzY3xdX1KpHeXM1nVTmtSmNtDPNYsccU7g-0,29334
|
304
|
+
streamlit/runtime/runtime_util.py,sha256=N8YDExh7loD3r6tIuScKIfX7MoDYmUGOjySjXRtp3QM,4039
|
305
305
|
streamlit/runtime/script_data.py,sha256=-sBITUF0U7DIDL5LE_nFpXAvjnEfiJ9J3HAnnqML9ds,1749
|
306
|
-
streamlit/runtime/secrets.py,sha256=
|
307
|
-
streamlit/runtime/session_manager.py,sha256=
|
308
|
-
streamlit/runtime/stats.py,sha256=
|
309
|
-
streamlit/runtime/uploaded_file_manager.py,sha256=
|
310
|
-
streamlit/runtime/websocket_session_manager.py,sha256=
|
311
|
-
streamlit/runtime/caching/__init__.py,sha256=
|
312
|
-
streamlit/runtime/caching/cache_data_api.py,sha256=
|
313
|
-
streamlit/runtime/caching/cache_errors.py,sha256=
|
314
|
-
streamlit/runtime/caching/cache_resource_api.py,sha256=
|
306
|
+
streamlit/runtime/secrets.py,sha256=31GB72MY3rEE1Nwv6yELroc6aAh7PNA9LuhPg9fjUT8,12845
|
307
|
+
streamlit/runtime/session_manager.py,sha256=YjF_HN4V7XoVO2FczZVBTFau-uv03v6AP-rHy_4fYw4,13070
|
308
|
+
streamlit/runtime/stats.py,sha256=cwTXk1qSv2U5mBbf43iTsyFUVr9OQ0Q5xKCZu545Nwg,3800
|
309
|
+
streamlit/runtime/uploaded_file_manager.py,sha256=RqHZr61sNJv4Z6e5uTCOI5o-vcLGGfKW9Dh6LQkeORM,4822
|
310
|
+
streamlit/runtime/websocket_session_manager.py,sha256=fijI2KolKVbWMsxYlmIoxxy8x-u_7i1sYYfrvnjhdU4,6354
|
311
|
+
streamlit/runtime/caching/__init__.py,sha256=In1l0d9Bkn52m1Fe6nFWDkzAXlwVpEWh1hZVBZpKCZ8,4447
|
312
|
+
streamlit/runtime/caching/cache_data_api.py,sha256=hFaOUp9ykNjhqN-8zg52bIc1KQInD-YYhVRh1bWsZG0,26625
|
313
|
+
streamlit/runtime/caching/cache_errors.py,sha256=rQDjdimKjnRjfqPWO3MvqDUkn0GrdsKeK2DMeifKets,4756
|
314
|
+
streamlit/runtime/caching/cache_resource_api.py,sha256=UrWcuDqq1vGnqmzqtQlfDUhcgxs4e_N25EJm5nS16gc,21785
|
315
315
|
streamlit/runtime/caching/cache_type.py,sha256=P21JWouFWU0qXQyHbM3y3A1pLZud90ALGeO4bQ5Pvew,1131
|
316
|
-
streamlit/runtime/caching/cache_utils.py,sha256=
|
317
|
-
streamlit/runtime/caching/cached_message_replay.py,sha256=
|
318
|
-
streamlit/runtime/caching/hashing.py,sha256=
|
316
|
+
streamlit/runtime/caching/cache_utils.py,sha256=kuEPuuCChek9rsIWV05AH9gpUxreH2JspxBdNOoB_Ow,18366
|
317
|
+
streamlit/runtime/caching/cached_message_replay.py,sha256=20lsH6isxIr6Mpixywj-_I6ltFDD_NX4MnmWia4LRVA,17973
|
318
|
+
streamlit/runtime/caching/hashing.py,sha256=05cvu9x_KV2pQp8pisH_mTIL0pqbBhobf3HZWVpNT6w,18988
|
319
319
|
streamlit/runtime/caching/legacy_cache_api.py,sha256=chml0yFrhPVyx9Dc3RIGJl0i8iZ1YJLoFLP1eE2n_DQ,5961
|
320
320
|
streamlit/runtime/caching/storage/__init__.py,sha256=b3JyzTI6Nyc3htcNZAq_f-XP3jMqnW2UNEbK3bm8bVs,965
|
321
|
-
streamlit/runtime/caching/storage/cache_storage_protocol.py,sha256=
|
321
|
+
streamlit/runtime/caching/storage/cache_storage_protocol.py,sha256=5wf3gRqa1Msjt-qPbcsuV741rKq3lcT1J6Nj4g0aPFI,8921
|
322
322
|
streamlit/runtime/caching/storage/dummy_cache_storage.py,sha256=IVQJs1KH3kkn0dc8YsLs3F7FX9wn2ZzTmyRgCTg7MYo,1945
|
323
323
|
streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py,sha256=VT5DysXStpsZiQo2fAkx6TXY_ijoon2ki338HjEIvzI,5389
|
324
324
|
streamlit/runtime/caching/storage/local_disk_cache_storage.py,sha256=twJksa2WB274njsSP2vJM0JgfUC5OGm_4-hvtGVpePE,9311
|
325
325
|
streamlit/runtime/scriptrunner/__init__.py,sha256=QpX77DVR8S2lhf7tC_5dcYRyJ2290_NHX4j6WL-N6Bo,1159
|
326
|
-
streamlit/runtime/scriptrunner/magic.py,sha256
|
326
|
+
streamlit/runtime/scriptrunner/magic.py,sha256=p1H8UiSoTSryirl8jf1-jpba8a1NvmlKngyZo_QNbPE,9080
|
327
327
|
streamlit/runtime/scriptrunner/magic_funcs.py,sha256=_npS_w-0riPNr1-dPyOSjqrwTXoeSR-gXWFkChQ5Yjc,1056
|
328
328
|
streamlit/runtime/scriptrunner/script_cache.py,sha256=ZpaB4T50_GYfhMc2dajSMXWCmS3kaUJ_tPHNVt_flBg,2856
|
329
|
-
streamlit/runtime/scriptrunner/script_requests.py,sha256=
|
330
|
-
streamlit/runtime/scriptrunner/script_run_context.py,sha256=
|
331
|
-
streamlit/runtime/scriptrunner/script_runner.py,sha256
|
329
|
+
streamlit/runtime/scriptrunner/script_requests.py,sha256=2QSboPtHbwm5erUiU-cjJ4DJGlTTkE0mpFLBr6cMjFQ,8065
|
330
|
+
streamlit/runtime/scriptrunner/script_run_context.py,sha256=uxAsPxTMQrpqJ4KhZW60EzTxHn3dhljGgLnhXNJHWaw,9309
|
331
|
+
streamlit/runtime/scriptrunner/script_runner.py,sha256=mP8S8o7OXYqx-2jxFB0iTzVsTyMzRPQmkC9X9E92bZU,29500
|
332
332
|
streamlit/runtime/state/__init__.py,sha256=UpfNfPrWJ6rVdD-qc0IP_bwZ4MrcNUjyU9wEKDK-eWM,1528
|
333
|
-
streamlit/runtime/state/common.py,sha256=
|
333
|
+
streamlit/runtime/state/common.py,sha256=2Afh-o79jx2y_GeWIKO_O8MlUcu1lvLqCtYrc-ePX-I,8175
|
334
334
|
streamlit/runtime/state/query_params.py,sha256=cESFE1Jq4oN6YpgocUsX0f1sSHMyGRoupbxm9X6v3NM,7477
|
335
|
-
streamlit/runtime/state/query_params_proxy.py,sha256=
|
336
|
-
streamlit/runtime/state/safe_session_state.py,sha256=
|
335
|
+
streamlit/runtime/state/query_params_proxy.py,sha256=gxaCF6-jmoM8HWXwQOdC6XgVjVdIYtqiicG3I2hQsLk,7152
|
336
|
+
streamlit/runtime/state/safe_session_state.py,sha256=WLFFyMtP4F19TWWBarKtSP942IepI2eeSBhifwbuFgY,5222
|
337
337
|
streamlit/runtime/state/session_state.py,sha256=JOV9Nb-_nMJ4c6Av5ZeVFAy2qgN_ja00x_TJPSMMhy4,27399
|
338
338
|
streamlit/runtime/state/session_state_proxy.py,sha256=vg1w054kfdO77fZUgPcHz4A47ghy6hZdp_c6A4ExNIs,5469
|
339
|
-
streamlit/runtime/state/widgets.py,sha256=
|
340
|
-
streamlit/static/asset-manifest.json,sha256=
|
339
|
+
streamlit/runtime/state/widgets.py,sha256=SUK9ALNrK6b8LtYy0Tl_giALxnokod9PhxctgJhhS2E,11445
|
340
|
+
streamlit/static/asset-manifest.json,sha256=JCjLkMTviN7rn_AHxpXM1qU-5HBg7BBJ0sFfbdH1I8g,14353
|
341
341
|
streamlit/static/favicon.png,sha256=if5cVgw7azxKOvV5FpGixga7JLn23rfnHcy1CdWI1-E,1019
|
342
|
-
streamlit/static/index.html,sha256=
|
342
|
+
streamlit/static/index.html,sha256=iYSUrIzOE6fGNYZ9ZnTDVi41ta58KGwCxVjdtrpDQW8,891
|
343
343
|
streamlit/static/static/css/3466.8b8f33d6.chunk.css,sha256=4m2lbj1eVFXSaGCRBHZNhqyRz-4Ce9KogjJPxIq6On8,33275
|
344
344
|
streamlit/static/static/css/5441.e3b876c5.chunk.css,sha256=XExLUUHInaWJp_m8TtBWhQ88SUuxZl6Jnnw5NA6rwI4,2633
|
345
345
|
streamlit/static/static/css/8148.49dfd2ce.chunk.css,sha256=LjBHDWjz8Hi0dr3DH9ujdlw4E2llc0xdDQHR64H4NQ8,12090
|
@@ -369,6 +369,7 @@ streamlit/static/static/js/4132.49bf3f2c.chunk.js,sha256=7VSP_20CCc0ynooZRtZBcr9
|
|
369
369
|
streamlit/static/static/js/4132.49bf3f2c.chunk.js.LICENSE.txt,sha256=426lVBKMW2FKu5BqnSDpZnhms1QqJZ-nDvqwC62w-Z8,479
|
370
370
|
streamlit/static/static/js/4177.69f9f18d.chunk.js,sha256=BEIcTqNGD5WEz9IlGOGHKQhCxm1pBaesg0hIlvDvH2w,2178
|
371
371
|
streamlit/static/static/js/4319.bf1c86bf.chunk.js,sha256=NvS6RzpYc6iEn8V7lyH8reMK1C1_LSpaPzIw0_9OpZY,2412
|
372
|
+
streamlit/static/static/js/4335.b492cdb7.chunk.js,sha256=4aZEaO4nBGAGLBC61lG0nH9YstKjk9wiVWuhrQxfOls,15299
|
372
373
|
streamlit/static/static/js/4477.87935ac8.chunk.js,sha256=twUY5V-Zc15eXfXuALgGVRsTxsl8feLBKyZpf028Kwc,20737
|
373
374
|
streamlit/static/static/js/4500.be0eb305.chunk.js,sha256=vCR3MRRRcG174logWV45fjiyce5vkQc00mmaOkvP3a4,585
|
374
375
|
streamlit/static/static/js/4666.a9344a3a.chunk.js,sha256=QID9r92rGjSzY8mKDJ_n5a-Yg3Kyi0bTWxS7u-PmOro,14835
|
@@ -394,7 +395,6 @@ streamlit/static/static/js/8005.43974a35.chunk.js,sha256=0WJomUw6UcQmH5JyhRJbaTU
|
|
394
395
|
streamlit/static/static/js/8148.1b2c085e.chunk.js,sha256=g0iGB20YLtfWV4L1OoIKpzCNqy-xN40bT9a57R1sv00,51222
|
395
396
|
streamlit/static/static/js/8427.59805a7f.chunk.js,sha256=zQK9wH15FYn5vtqCMzUuwrmhs3aOOLP0lbPJKR6M6Lc,3134
|
396
397
|
streamlit/static/static/js/8477.de889fe5.chunk.js,sha256=zSHIjuqcBrVcEFGrUI_xbwRRRFfrU7iZntdezrPzMOw,1889
|
397
|
-
streamlit/static/static/js/8492.8ad745d1.chunk.js,sha256=8qgTr1mODmFJ_xgP5FvfcRNCdw9CEgFLY-inM-biFgA,15542
|
398
398
|
streamlit/static/static/js/8536.f8de3d9a.chunk.js,sha256=Cv-agtcgZe6QMrPKv4Ie5pyZS0dXxMTNpRSK9I3Q2I8,10240
|
399
399
|
streamlit/static/static/js/8570.6de19120.chunk.js,sha256=Dxg1jh1yRSXs21gOKvtU19QLvk7BSJRbaj7HC5D8odM,12214
|
400
400
|
streamlit/static/static/js/8571.cfc22b99.chunk.js,sha256=vME3kfn7jSk1wnzcLqrlkclolf3IBK5mppEFQrfdL1c,21241
|
@@ -407,8 +407,8 @@ streamlit/static/static/js/9656.8c935274.chunk.js,sha256=3VB6NT0EQErJUX2SYLQpmNA
|
|
407
407
|
streamlit/static/static/js/9865.fd93213d.chunk.js,sha256=Ul2N951ZrAXpJOWo4SV4AKlymjMMNPJxpea3uRt8B_Y,4011
|
408
408
|
streamlit/static/static/js/9945.47d54f35.chunk.js,sha256=hhr3CT-A7_nboARJ6yPmoB69w1mljn8GzMnsyu-moZg,398776
|
409
409
|
streamlit/static/static/js/9945.47d54f35.chunk.js.LICENSE.txt,sha256=6s4mSSf8NHGJqUCFAj3VgMXZuNYyAzshKRhvxYZTQoU,281
|
410
|
-
streamlit/static/static/js/main.
|
411
|
-
streamlit/static/static/js/main.
|
410
|
+
streamlit/static/static/js/main.0ebf040e.js,sha256=XEvok0JzosYcIPrA1z6AjnqnThWXlWrO_Lhdtohdqtw,4423877
|
411
|
+
streamlit/static/static/js/main.0ebf040e.js.LICENSE.txt,sha256=YTeqT7R6idssTgnyi3gf0tRiq18-LiPeDOpsWcnbi34,3184
|
412
412
|
streamlit/static/static/media/KaTeX_AMS-Regular.73ea273a72f4aca30ca5.woff2,sha256=DN04fJWQoan5eUVgAi27WWVKfYbxh6oMgUla1C06cwg,28076
|
413
413
|
streamlit/static/static/media/KaTeX_AMS-Regular.853be92419a6c3766b9a.ttf,sha256=aFNIQLz90r_7bw6N60hoTdAefwTqKBMmdXevuQbeHRM,63632
|
414
414
|
streamlit/static/static/media/KaTeX_AMS-Regular.d562e886c52f12660a41.woff,sha256=MNqR6EyJP4deJSaJ-uvcWQsocRReitx_mp1NvYzgslE,33516
|
@@ -497,9 +497,9 @@ streamlit/static/static/media/logo.83ae4f2fb87e38be7cbb8a5d2beb64d2.svg,sha256=_
|
|
497
497
|
streamlit/static/static/media/rocket.b75b17d2b0a063c6cea230d1a9d77f1e.svg,sha256=6ZIRbOQuBNsdJnpfrNMq-6mYpYDN8qJGVsxkZIn8bP8,39315
|
498
498
|
streamlit/testing/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
499
499
|
streamlit/testing/v1/__init__.py,sha256=XGxNOq4VfmwlVj9K6vXB8dAH1YbI_8AIsvw_vbzQoNA,690
|
500
|
-
streamlit/testing/v1/app_test.py,sha256=
|
501
|
-
streamlit/testing/v1/element_tree.py,sha256=
|
502
|
-
streamlit/testing/v1/local_script_runner.py,sha256=
|
500
|
+
streamlit/testing/v1/app_test.py,sha256=6TpsN81l-SeSQiWg8wAhwz9auSbyUlL7dPw9Hfmq8g4,36813
|
501
|
+
streamlit/testing/v1/element_tree.py,sha256=Ws4C9Hxwf8gCrxQp3orSl-FzQ-dK3KOG8yZYPg6D8zk,59939
|
502
|
+
streamlit/testing/v1/local_script_runner.py,sha256=OSbOJJooiy70lkjYMqAytWm7X_12Ry7G1JZHaLl3-cI,6595
|
503
503
|
streamlit/testing/v1/util.py,sha256=IwxXIlGsVNtC1RmtmgdeBHmJYPjK0wiqNL4HMW6IJZI,1791
|
504
504
|
streamlit/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
505
505
|
streamlit/vendor/ipython/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -507,29 +507,29 @@ streamlit/vendor/ipython/modified_sys_path.py,sha256=ZqgBdpdyc_pWkieJUhKDdmW9sIQ
|
|
507
507
|
streamlit/vendor/pympler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
508
508
|
streamlit/vendor/pympler/asizeof.py,sha256=noLIqizkYzTkYtA4k8fyvKeiIh8fW9ipW27YP56kQ6o,87925
|
509
509
|
streamlit/watcher/__init__.py,sha256=Tn9E295dBAPIF38TAiWdfIoCsJWXU6rgY1FlxNmLqUU,915
|
510
|
-
streamlit/watcher/event_based_path_watcher.py,sha256=
|
511
|
-
streamlit/watcher/local_sources_watcher.py,sha256=
|
510
|
+
streamlit/watcher/event_based_path_watcher.py,sha256=fLVVP7AU6IyTZ0D44RJqSmQowTkNQ18hkTcwOgFkP8I,14040
|
511
|
+
streamlit/watcher/local_sources_watcher.py,sha256=1Js7raiuMyqe-S6fqbXiTvgsxE2mx-_3xMAUv24lcTg,8642
|
512
512
|
streamlit/watcher/path_watcher.py,sha256=hFc_6FhLHsdbgVRFNJiyelJX3bX_rPvN-PQcgEZ7ZEc,5654
|
513
513
|
streamlit/watcher/polling_path_watcher.py,sha256=VwQ06abbvHSIuvR66YpFDx9ANhrzTmoQylKqSjUosFE,3822
|
514
514
|
streamlit/watcher/util.py,sha256=uDsWPxQ8WLNQ4U_MCqWm38H7BEjSrBpPsIZj1ySK8KM,5203
|
515
515
|
streamlit/web/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
516
|
-
streamlit/web/bootstrap.py,sha256=
|
517
|
-
streamlit/web/cache_storage_manager_config.py,sha256=
|
518
|
-
streamlit/web/cli.py,sha256=
|
516
|
+
streamlit/web/bootstrap.py,sha256=iGOwf6mMhq0jKizaMM_XJ3zfV7BSFS45nmXJFAiWYjc,12954
|
517
|
+
streamlit/web/cache_storage_manager_config.py,sha256=3bBXzQOPfMhBKCtrywwZQi7LuGf9b4Lm-RbhInd5o5k,1215
|
518
|
+
streamlit/web/cli.py,sha256=2QkmLRRwWiC5yNJlzNofNJJheXa2my-9gehbwiHtc_U,11165
|
519
519
|
streamlit/web/server/__init__.py,sha256=w4TFcV0OjM5zx8ej7oThRIyB6gq3kqdt45XBk1zkRWo,1080
|
520
520
|
streamlit/web/server/app_static_file_handler.py,sha256=2f3uxDsLYztJhDHFUYCX4qEWjPEKtPxb-Zxaae4VsmA,3076
|
521
|
-
streamlit/web/server/browser_websocket_handler.py,sha256=
|
522
|
-
streamlit/web/server/component_request_handler.py,sha256=
|
521
|
+
streamlit/web/server/browser_websocket_handler.py,sha256=rcOCOfzs1cgkipT-8drKBVdxMsJDwihRccaOea3KYqU,7950
|
522
|
+
streamlit/web/server/component_request_handler.py,sha256=abbEJFcHk7tfRtLquNcfXgjuS-0bwp9lO9Dxo-Ttp6M,4158
|
523
523
|
streamlit/web/server/media_file_handler.py,sha256=2KfzPnMN1RstMtI4fs0PD0vFiFrWMyKL0q7LfWJLYZ4,5270
|
524
|
-
streamlit/web/server/routes.py,sha256=
|
525
|
-
streamlit/web/server/server.py,sha256=
|
526
|
-
streamlit/web/server/server_util.py,sha256=
|
527
|
-
streamlit/web/server/stats_request_handler.py,sha256=
|
528
|
-
streamlit/web/server/upload_file_request_handler.py,sha256=
|
524
|
+
streamlit/web/server/routes.py,sha256=0wB98FxCDQ14kot7eubkoWe7v5CeQogPYg-33EEe5zI,9865
|
525
|
+
streamlit/web/server/server.py,sha256=KuwMMQ_9HEbYE6_T_9G18mdCJSlAbr7zg4ZYLQPzVsE,14891
|
526
|
+
streamlit/web/server/server_util.py,sha256=C3M971XFoEXTMufQLwHbZdtZOE30nWx-2WiXmvX_6fE,4197
|
527
|
+
streamlit/web/server/stats_request_handler.py,sha256=47nQHe4ETsO9QS9FAEUF8rZigU_k5eACJZw4-jc8U6c,3684
|
528
|
+
streamlit/web/server/upload_file_request_handler.py,sha256=ftyKpARrUjOpRcFETIXuoTyOG_mo-ToOw5NI0y_W4lE,5003
|
529
529
|
streamlit/web/server/websocket_headers.py,sha256=07SkWLcOxbyldl7UcBzrMKY9ZojypCQACiKoh5FcH7Y,1870
|
530
|
-
streamlit_nightly-1.35.1.
|
531
|
-
streamlit_nightly-1.35.1.
|
532
|
-
streamlit_nightly-1.35.1.
|
533
|
-
streamlit_nightly-1.35.1.
|
534
|
-
streamlit_nightly-1.35.1.
|
535
|
-
streamlit_nightly-1.35.1.
|
530
|
+
streamlit_nightly-1.35.1.dev20240612.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
|
531
|
+
streamlit_nightly-1.35.1.dev20240612.dist-info/METADATA,sha256=eZv4csbTLJS37e4QvS5KM3uYDtiBieDAKaC33Ur6WcE,8527
|
532
|
+
streamlit_nightly-1.35.1.dev20240612.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
|
533
|
+
streamlit_nightly-1.35.1.dev20240612.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
|
534
|
+
streamlit_nightly-1.35.1.dev20240612.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
|
535
|
+
streamlit_nightly-1.35.1.dev20240612.dist-info/RECORD,,
|