streamlit-nightly 1.36.1.dev20240627__py2.py3-none-any.whl → 1.36.1.dev20240628__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamlit/commands/page_config.py +2 -2
- streamlit/components/v1/components.py +1 -1
- streamlit/elements/alert.py +2 -2
- streamlit/elements/graphviz_chart.py +4 -2
- streamlit/elements/layouts.py +2 -2
- streamlit/elements/toast.py +2 -2
- streamlit/elements/widgets/button.py +2 -2
- streamlit/elements/widgets/chat.py +2 -2
- streamlit/material_icon_names.py +9 -4
- streamlit/navigation/page.py +3 -3
- streamlit/static/asset-manifest.json +5 -5
- streamlit/static/index.html +1 -1
- streamlit/static/static/css/{main.3aaaea00.css → main.29bca1b5.css} +1 -1
- streamlit/static/static/js/main.0326e951.js +2 -0
- streamlit/static/static/media/MaterialSymbols-Rounded.ec07649f7a20048d5730.woff2 +0 -0
- streamlit/testing/v1/element_tree.py +11 -11
- streamlit/type_util.py +1 -0
- streamlit/web/server/routes.py +6 -1
- {streamlit_nightly-1.36.1.dev20240627.dist-info → streamlit_nightly-1.36.1.dev20240628.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.36.1.dev20240627.dist-info → streamlit_nightly-1.36.1.dev20240628.dist-info}/RECORD +25 -25
- streamlit/static/static/js/main.5b854b9d.js +0 -2
- streamlit/static/static/media/MaterialSymbols-Outlined.909d2dce4aba724ad02f.woff2 +0 -0
- /streamlit/static/static/js/{main.5b854b9d.js.LICENSE.txt → main.0326e951.js.LICENSE.txt} +0 -0
- {streamlit_nightly-1.36.1.dev20240627.data → streamlit_nightly-1.36.1.dev20240628.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.36.1.dev20240627.dist-info → streamlit_nightly-1.36.1.dev20240628.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.36.1.dev20240627.dist-info → streamlit_nightly-1.36.1.dev20240628.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.36.1.dev20240627.dist-info → streamlit_nightly-1.36.1.dev20240628.dist-info}/top_level.txt +0 -0
@@ -201,12 +201,12 @@ class Widget(Element, ABC):
|
|
201
201
|
def _widget_state(self) -> WidgetState: ...
|
202
202
|
|
203
203
|
|
204
|
-
|
204
|
+
El_co = TypeVar("El_co", bound=Element, covariant=True)
|
205
205
|
|
206
206
|
|
207
|
-
class ElementList(Generic[
|
208
|
-
def __init__(self, els: Sequence[
|
209
|
-
self._list: Sequence[
|
207
|
+
class ElementList(Generic[El_co]):
|
208
|
+
def __init__(self, els: Sequence[El_co]):
|
209
|
+
self._list: Sequence[El_co] = els
|
210
210
|
|
211
211
|
def __len__(self) -> int:
|
212
212
|
return len(self._list)
|
@@ -216,12 +216,12 @@ class ElementList(Generic[El]):
|
|
216
216
|
return len(self)
|
217
217
|
|
218
218
|
@overload
|
219
|
-
def __getitem__(self, idx: int) ->
|
219
|
+
def __getitem__(self, idx: int) -> El_co: ...
|
220
220
|
|
221
221
|
@overload
|
222
|
-
def __getitem__(self, idx: slice) -> ElementList[
|
222
|
+
def __getitem__(self, idx: slice) -> ElementList[El_co]: ...
|
223
223
|
|
224
|
-
def __getitem__(self, idx: int | slice) ->
|
224
|
+
def __getitem__(self, idx: int | slice) -> El_co | ElementList[El_co]:
|
225
225
|
if isinstance(idx, slice):
|
226
226
|
return ElementList(self._list[idx])
|
227
227
|
else:
|
@@ -233,7 +233,7 @@ class ElementList(Generic[El]):
|
|
233
233
|
def __repr__(self):
|
234
234
|
return util.repr_(self)
|
235
235
|
|
236
|
-
def __eq__(self, other: ElementList[
|
236
|
+
def __eq__(self, other: ElementList[El_co] | object) -> bool:
|
237
237
|
if isinstance(other, ElementList):
|
238
238
|
return self._list == other._list
|
239
239
|
else:
|
@@ -244,11 +244,11 @@ class ElementList(Generic[El]):
|
|
244
244
|
return [e.value for e in self]
|
245
245
|
|
246
246
|
|
247
|
-
|
247
|
+
W_co = TypeVar("W_co", bound=Widget, covariant=True)
|
248
248
|
|
249
249
|
|
250
|
-
class WidgetList(ElementList[
|
251
|
-
def __call__(self, key: str) ->
|
250
|
+
class WidgetList(ElementList[W_co], Generic[W_co]):
|
251
|
+
def __call__(self, key: str) -> W_co:
|
252
252
|
for e in self._list:
|
253
253
|
if e.key == key:
|
254
254
|
return e
|
streamlit/type_util.py
CHANGED
streamlit/web/server/routes.py
CHANGED
@@ -71,7 +71,12 @@ class StaticFileHandler(tornado.web.StaticFileHandler):
|
|
71
71
|
# If the file is not found, and there are no reserved paths,
|
72
72
|
# we try to serve the default file and allow the frontend to handle the issue.
|
73
73
|
if e.status_code == 404:
|
74
|
-
|
74
|
+
url_path = self.path
|
75
|
+
# self.path is OS specific file path, we convert it to a URL path
|
76
|
+
# for checking it against reserved paths.
|
77
|
+
if os.path.sep != "/":
|
78
|
+
url_path = url_path.replace(os.path.sep, "/")
|
79
|
+
if any(url_path.endswith(x) for x in self._reserved_paths):
|
75
80
|
raise e
|
76
81
|
|
77
82
|
self.path = self.parse_url_path(self.default_filename or "index.html")
|
@@ -23,7 +23,7 @@ streamlit/folder_black_list.py,sha256=Ji9UZ4PtrilLxmvb8W57SIEK7AkeLGEqqtqr4y2osc
|
|
23
23
|
streamlit/git_util.py,sha256=tVRinRwVqJDtJAJOr9d_PuFNbGJKPpo34xpxJTUnfZ0,5261
|
24
24
|
streamlit/js_number.py,sha256=21VdJozG82xyZauYrdR819tb8mNNBxu-YzTXRBmLFgo,3524
|
25
25
|
streamlit/logger.py,sha256=U1jcoGLZ6kN1aeLy26tjGVWEAAl_uOKcW22wKCLgHbk,3987
|
26
|
-
streamlit/material_icon_names.py,sha256=
|
26
|
+
streamlit/material_icon_names.py,sha256=KHdnaLG8SgKSFhvWAzMP9bdDkQMq4HeaESW8jDF1tj0,59205
|
27
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
|
@@ -31,7 +31,7 @@ streamlit/source_util.py,sha256=2KOVrEhBATVh9M_bnbg9OwWPORg1riCB63JzE7g8oK0,6145
|
|
31
31
|
streamlit/string_util.py,sha256=x1ZuLlorPMNUpOZYMAN1VLdxViJwfPcXQ99PKRn0pyg,6347
|
32
32
|
streamlit/temporary_directory.py,sha256=eBv5q0CR9GApa-itZBaGtqQKMl248H0HojEVKzkS9cc,1627
|
33
33
|
streamlit/time_util.py,sha256=zPDirzZDAOPzGogHy-4wOalfBb7zCNCvFEfkZf03otc,2836
|
34
|
-
streamlit/type_util.py,sha256=
|
34
|
+
streamlit/type_util.py,sha256=mSMknj8UhGh9DXqX4XPyfeTJjVdWvPU_49-BH_iJOmM,48616
|
35
35
|
streamlit/url_util.py,sha256=iU1lpZhzW4ZjhjBhSdw39OzixnThIsxhXpDP-ZIgUT8,3019
|
36
36
|
streamlit/user_info.py,sha256=tvv__45d7cA6tNrGw1vHtWwc6QLtmXTM5xZoYeTs1cw,3383
|
37
37
|
streamlit/util.py,sha256=0Phev7Lytvcy_eqIjpoGl2-7mOODwAwArY2zJpavEh8,6375
|
@@ -41,7 +41,7 @@ streamlit/commands/execution_control.py,sha256=_EpB5LuVeU4jmkp_X-yW7WS4XxaWIM4Tn
|
|
41
41
|
streamlit/commands/experimental_query_params.py,sha256=axNJrNpOICoUCVXORo8rvq0l7EBoCGKd10s-wAopxMY,4980
|
42
42
|
streamlit/commands/logo.py,sha256=H3Rlk45D38mfAsk7t_E4wQOq76wn9FKdUKeeNH73Rf8,5682
|
43
43
|
streamlit/commands/navigation.py,sha256=fgQiBkkj83d_ju2Zyy-JnA21EtcAAHKW_CZFHQn0WtM,9518
|
44
|
-
streamlit/commands/page_config.py,sha256=
|
44
|
+
streamlit/commands/page_config.py,sha256=xUpAIuqYp2Z4iUbNIEyJHaJwLGo0dsaAHuB7jgzRWw0,12995
|
45
45
|
streamlit/components/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
46
46
|
streamlit/components/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
47
47
|
streamlit/components/lib/local_component_registry.py,sha256=xm2pD0lcUzWyQnLaJAl6KQmoU2OSvGilgheMXDoLBeM,3016
|
@@ -51,7 +51,7 @@ streamlit/components/types/base_custom_component.py,sha256=a8fvmmf8DN18fhezsdgkr
|
|
51
51
|
streamlit/components/v1/__init__.py,sha256=I7xa1wfGQY84U_nWWsq1i_HO5kCQ7f0BE5_dEQUiWRw,1027
|
52
52
|
streamlit/components/v1/component_arrow.py,sha256=5v0pSPO97cmfQ7pvdEqo43UFLepI6KhefHq7zta5wjc,4130
|
53
53
|
streamlit/components/v1/component_registry.py,sha256=OfrYqNhRYy0gVD22k5QhEne8mYcq1kWGmb71TjW5ZeQ,4791
|
54
|
-
streamlit/components/v1/components.py,sha256=
|
54
|
+
streamlit/components/v1/components.py,sha256=xyJSWP81OPAybRY2G4oLgBLdqAzX-hoY-Ib6Wi90Jdw,1335
|
55
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
|
@@ -60,7 +60,7 @@ streamlit/connections/snowpark_connection.py,sha256=SK06E4rLF7iJBn8wTnB7Gih6y3Hx
|
|
60
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
|
-
streamlit/elements/alert.py,sha256=
|
63
|
+
streamlit/elements/alert.py,sha256=lH-6imS4xVigL-aDQmLq3WaGalcyGDL2A_81bLIgQz4,7430
|
64
64
|
streamlit/elements/arrow.py,sha256=7AB3bt_5_iKKL-pCLqSiSI2dtF-ifa4ZDJs-355ZzcE,28152
|
65
65
|
streamlit/elements/balloons.py,sha256=QnORgG96Opga1SVg8tUBOm-l3nMpKWmjvy1crcS2XaU,1482
|
66
66
|
streamlit/elements/bokeh_chart.py,sha256=UffqDmO_yyMG-a8t2QzWEsxxpJteFaNRGXWrci0fFPc,4257
|
@@ -71,13 +71,13 @@ streamlit/elements/doc_string.py,sha256=Bc-3His1071cFfrpidgE5HUgolAd3mzEZJIQ3dyy
|
|
71
71
|
streamlit/elements/empty.py,sha256=VyYZAeipAt73mYYYTobMlIQa6GWq6xfVHtEaK4VOpUA,3853
|
72
72
|
streamlit/elements/exception.py,sha256=O2i45dgHlQfugToe5J2TS0ioun5EmAnu41p_lOWNVKQ,9139
|
73
73
|
streamlit/elements/form.py,sha256=jbkeyO_sU0a8ZuutlnYENakLApKI0pKTMzuf4AXy-98,12422
|
74
|
-
streamlit/elements/graphviz_chart.py,sha256=
|
74
|
+
streamlit/elements/graphviz_chart.py,sha256=AzDJm1Td3wIkzew53ANyckrQNZ8J3JevrzwlFl7MkKQ,4937
|
75
75
|
streamlit/elements/heading.py,sha256=P138T1fMR0AKESewo8lOxn_PIFGACroj_VrOP1QZ2fA,11272
|
76
76
|
streamlit/elements/html.py,sha256=On0eJKdpveVNnPDU4ApYCQQwM7wqj0GNJh9s8rUranE,2687
|
77
77
|
streamlit/elements/iframe.py,sha256=HwfwNQmlN9kmylqLbXEkUb_44ei36UxyZB7hWiSLNDY,5780
|
78
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=1YjSnGIlQQiH6O2pE7RMMe2Uqj8liypCbL94OSf1yag,31961
|
81
81
|
streamlit/elements/map.py,sha256=hdKzOsWhXPrfU98HJ-12xgnvMyvBd3dPnTUjwUPZKvc,16648
|
82
82
|
streamlit/elements/markdown.py,sha256=ESaOIk31BldHGfAYjohIopncP5IHPefUXN7EdZPPZCQ,10513
|
83
83
|
streamlit/elements/media.py,sha256=svqoP1loCHK7UOXVk8XfwHYjQ8HMCsSO2VTkCvPVRhY,29682
|
@@ -88,7 +88,7 @@ streamlit/elements/pyplot.py,sha256=sS84CJuO1ENnF0DyYSnlWoeDKb4w22Q_fMAqMCylniQ,
|
|
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=
|
91
|
+
streamlit/elements/toast.py,sha256=Or7FvYir6slVm27R36AUvpDEfz9nSg_8p0OMBRaSVIM,4341
|
92
92
|
streamlit/elements/vega_charts.py,sha256=rt_eZBpUoNQDV4OcLeGz6fG2-0FlzEwtXfOy_i09HGE,75825
|
93
93
|
streamlit/elements/write.py,sha256=9kpeYFx8huqQOPR_3me2vXjXbyWwipBNpMcwp1icnHI,21021
|
94
94
|
streamlit/elements/lib/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
@@ -105,9 +105,9 @@ streamlit/elements/lib/streamlit_plotly_theme.py,sha256=DgMP_PWTfFO5J__q8bGxoT3e
|
|
105
105
|
streamlit/elements/lib/subtitle_utils.py,sha256=ciPgQ6Yi3NS7OdFgDH6lGFwDZpv022flEyQKY5lHNiE,6245
|
106
106
|
streamlit/elements/lib/utils.py,sha256=-qSsOqspqHU-UbkU0W3wYzPZznczRoP1qwJF1u8MnC4,4956
|
107
107
|
streamlit/elements/widgets/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
108
|
-
streamlit/elements/widgets/button.py,sha256=
|
108
|
+
streamlit/elements/widgets/button.py,sha256=kIHfEPORG1Oa00oCummSFhu8IdD7vwVdraakOgo-fT4,34279
|
109
109
|
streamlit/elements/widgets/camera_input.py,sha256=sb3QIklg9ZSFf57paxbdBXK_nPmuz1tOiypPtJzCyH0,9262
|
110
|
-
streamlit/elements/widgets/chat.py,sha256=
|
110
|
+
streamlit/elements/widgets/chat.py,sha256=pwCf9hxS9kL_Hkdnx8pK9HD_nwvU_LRrJaHtxqPhSWM,14362
|
111
111
|
streamlit/elements/widgets/checkbox.py,sha256=-RxCOfGzVajFgGfuAiligKxRc-ClMEUDHpzGEw10W0w,12694
|
112
112
|
streamlit/elements/widgets/color_picker.py,sha256=oPItMUwdm4CZTb-nQ5Wxj6LOSaAr--LPLivMQFKreEQ,9285
|
113
113
|
streamlit/elements/widgets/data_editor.py,sha256=MbcHVLHR7BDVkeRLXtbsTt0jIUybcCSQz75vI0IZ3iI,35164
|
@@ -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=UpEI7K6Z5uqw7jw0AOHzCmKcQc4lAuEIyeoBnmwBjA8,10914
|
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
|
@@ -339,13 +339,13 @@ streamlit/runtime/state/safe_session_state.py,sha256=WLFFyMtP4F19TWWBarKtSP942Ie
|
|
339
339
|
streamlit/runtime/state/session_state.py,sha256=__3NVXfqjZLGYBDk2AkYpFdJ6hMvIfRp4jPYDLHl75s,27403
|
340
340
|
streamlit/runtime/state/session_state_proxy.py,sha256=9xGk-_h3l2vwIvbt20MPhVDm20noblfMd45NY9Qv-zE,5473
|
341
341
|
streamlit/runtime/state/widgets.py,sha256=SUK9ALNrK6b8LtYy0Tl_giALxnokod9PhxctgJhhS2E,11445
|
342
|
-
streamlit/static/asset-manifest.json,sha256=
|
342
|
+
streamlit/static/asset-manifest.json,sha256=t8wIk1C7DK-5qc9YMZjElQZIBAh62m68ewf5fOglqSU,14351
|
343
343
|
streamlit/static/favicon.png,sha256=if5cVgw7azxKOvV5FpGixga7JLn23rfnHcy1CdWI1-E,1019
|
344
|
-
streamlit/static/index.html,sha256=
|
344
|
+
streamlit/static/index.html,sha256=p4oq0lRDGiRg6b4KiJbFRSvuy4Tb3fW2vgsiqWZVStM,891
|
345
345
|
streamlit/static/static/css/3466.8b8f33d6.chunk.css,sha256=4m2lbj1eVFXSaGCRBHZNhqyRz-4Ce9KogjJPxIq6On8,33275
|
346
346
|
streamlit/static/static/css/5441.e3b876c5.chunk.css,sha256=XExLUUHInaWJp_m8TtBWhQ88SUuxZl6Jnnw5NA6rwI4,2633
|
347
347
|
streamlit/static/static/css/8148.49dfd2ce.chunk.css,sha256=LjBHDWjz8Hi0dr3DH9ujdlw4E2llc0xdDQHR64H4NQ8,12090
|
348
|
-
streamlit/static/static/css/main.
|
348
|
+
streamlit/static/static/css/main.29bca1b5.css,sha256=S5OjTntvZYhBvZrEd10zSAtVjkPFNQAQRzs3j2fWX7A,29244
|
349
349
|
streamlit/static/static/js/1074.a92bc15f.chunk.js,sha256=fExx2hsAo3xUKVRe-VdPTbewwjmXky8dXQZqAN-ALB8,5518
|
350
350
|
streamlit/static/static/js/1168.14f7c6ff.chunk.js,sha256=3p-FxlAt2zio7ld-yxQNzOgRNwC_YFB-UH7aay6Dt9w,15023
|
351
351
|
streamlit/static/static/js/1307.36b77087.chunk.js,sha256=-ubx82_V69dDqkPWdQ56nJpAGrUPZpeEa6ISIcaZ-jY,5864
|
@@ -409,8 +409,8 @@ streamlit/static/static/js/9656.8c935274.chunk.js,sha256=3VB6NT0EQErJUX2SYLQpmNA
|
|
409
409
|
streamlit/static/static/js/9865.fd93213d.chunk.js,sha256=Ul2N951ZrAXpJOWo4SV4AKlymjMMNPJxpea3uRt8B_Y,4011
|
410
410
|
streamlit/static/static/js/9945.47d54f35.chunk.js,sha256=hhr3CT-A7_nboARJ6yPmoB69w1mljn8GzMnsyu-moZg,398776
|
411
411
|
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.
|
412
|
+
streamlit/static/static/js/main.0326e951.js,sha256=gKfFfn1-eS8Mfwnok7MSWhMQ_6VMqLiS_kDcOg5rTq4,4425026
|
413
|
+
streamlit/static/static/js/main.0326e951.js.LICENSE.txt,sha256=YTeqT7R6idssTgnyi3gf0tRiq18-LiPeDOpsWcnbi34,3184
|
414
414
|
streamlit/static/static/media/KaTeX_AMS-Regular.73ea273a72f4aca30ca5.woff2,sha256=DN04fJWQoan5eUVgAi27WWVKfYbxh6oMgUla1C06cwg,28076
|
415
415
|
streamlit/static/static/media/KaTeX_AMS-Regular.853be92419a6c3766b9a.ttf,sha256=aFNIQLz90r_7bw6N60hoTdAefwTqKBMmdXevuQbeHRM,63632
|
416
416
|
streamlit/static/static/media/KaTeX_AMS-Regular.d562e886c52f12660a41.woff,sha256=MNqR6EyJP4deJSaJ-uvcWQsocRReitx_mp1NvYzgslE,33516
|
@@ -471,7 +471,7 @@ streamlit/static/static/media/KaTeX_Size4-Regular.e418bf257af1052628d8.woff2,sha
|
|
471
471
|
streamlit/static/static/media/KaTeX_Typewriter-Regular.4c6b94fd1d07f8beff7c.woff,sha256=4U_tArGrp86fWv1YRLXQMhsiNR_rxyDg3ouHI1J2Cfc,16028
|
472
472
|
streamlit/static/static/media/KaTeX_Typewriter-Regular.c295e7f71970f03c0549.woff2,sha256=cdUX1ngneHz6vfGGkUzDNY7aU543kxlB8rL9SiH2jAs,13568
|
473
473
|
streamlit/static/static/media/KaTeX_Typewriter-Regular.c5c02d763c89380dcb4e.ttf,sha256=8B8-h9nGphwMCBzrV3q9hk6wCmEvesFiDdaRX60u9ao,27556
|
474
|
-
streamlit/static/static/media/MaterialSymbols-
|
474
|
+
streamlit/static/static/media/MaterialSymbols-Rounded.ec07649f7a20048d5730.woff2,sha256=DXk-myMWYK8DKu1HDFfDfs2FnbcN9aQvm2s8PMM1egY,289616
|
475
475
|
streamlit/static/static/media/SourceCodePro-Bold.17a68a0751a813474a0e.woff2,sha256=GRaJCgp-IjxFMIQh3H8g4xvKBiiIY0_wmiTLK0wLQ8Y,74492
|
476
476
|
streamlit/static/static/media/SourceCodePro-BoldItalic.d45b7a3df103d441d78b.woff2,sha256=jVJHL9nm8MafxoRdi7Bu6A_Ei4VHJ7_Rh44qY1mqc2k,63060
|
477
477
|
streamlit/static/static/media/SourceCodePro-Italic.ec122a420df4175e74f2.woff2,sha256=9l14W6OSkW1dJiiKKavLd1_QdTHtv_Sl67HNQoWSu8g,62096
|
@@ -500,7 +500,7 @@ streamlit/static/static/media/rocket.b75b17d2b0a063c6cea230d1a9d77f1e.svg,sha256
|
|
500
500
|
streamlit/testing/__init__.py,sha256=Vrf1yVMOcTyhUPnYvsfyeL96Vpd5z8KoSV5ZzTcTQgU,616
|
501
501
|
streamlit/testing/v1/__init__.py,sha256=XGxNOq4VfmwlVj9K6vXB8dAH1YbI_8AIsvw_vbzQoNA,690
|
502
502
|
streamlit/testing/v1/app_test.py,sha256=cRRGOX53EZKCZgl22OOzrCmEbgGsLDJ4tnIzhNXNL3A,36879
|
503
|
-
streamlit/testing/v1/element_tree.py,sha256=
|
503
|
+
streamlit/testing/v1/element_tree.py,sha256=j3f7XUhL6dtw-zS4oSdky_uNAyFLKa9mWlqI3vMbWnk,60006
|
504
504
|
streamlit/testing/v1/local_script_runner.py,sha256=OSbOJJooiy70lkjYMqAytWm7X_12Ry7G1JZHaLl3-cI,6595
|
505
505
|
streamlit/testing/v1/util.py,sha256=IwxXIlGsVNtC1RmtmgdeBHmJYPjK0wiqNL4HMW6IJZI,1791
|
506
506
|
streamlit/vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -523,15 +523,15 @@ streamlit/web/server/app_static_file_handler.py,sha256=2f3uxDsLYztJhDHFUYCX4qEWj
|
|
523
523
|
streamlit/web/server/browser_websocket_handler.py,sha256=rcOCOfzs1cgkipT-8drKBVdxMsJDwihRccaOea3KYqU,7950
|
524
524
|
streamlit/web/server/component_request_handler.py,sha256=abbEJFcHk7tfRtLquNcfXgjuS-0bwp9lO9Dxo-Ttp6M,4158
|
525
525
|
streamlit/web/server/media_file_handler.py,sha256=2KfzPnMN1RstMtI4fs0PD0vFiFrWMyKL0q7LfWJLYZ4,5270
|
526
|
-
streamlit/web/server/routes.py,sha256=
|
526
|
+
streamlit/web/server/routes.py,sha256=QptzrFI6KM7XrAzSRdirhGm7Eos8b2T6PrnUp-Zoa_o,10146
|
527
527
|
streamlit/web/server/server.py,sha256=KuwMMQ_9HEbYE6_T_9G18mdCJSlAbr7zg4ZYLQPzVsE,14891
|
528
528
|
streamlit/web/server/server_util.py,sha256=C3M971XFoEXTMufQLwHbZdtZOE30nWx-2WiXmvX_6fE,4197
|
529
529
|
streamlit/web/server/stats_request_handler.py,sha256=47nQHe4ETsO9QS9FAEUF8rZigU_k5eACJZw4-jc8U6c,3684
|
530
530
|
streamlit/web/server/upload_file_request_handler.py,sha256=ftyKpARrUjOpRcFETIXuoTyOG_mo-ToOw5NI0y_W4lE,5003
|
531
531
|
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.
|
532
|
+
streamlit_nightly-1.36.1.dev20240628.data/scripts/streamlit.cmd,sha256=ZEYM3vBJSp-k7vwSJ3ba5NzEk9-qHdSeLvGYAAe1mMw,676
|
533
|
+
streamlit_nightly-1.36.1.dev20240628.dist-info/METADATA,sha256=w0f-VwwsE8z5k6JL2QPvEL-lY_P1d6QYsmmYMtvtHak,8531
|
534
|
+
streamlit_nightly-1.36.1.dev20240628.dist-info/WHEEL,sha256=_4XEmVmaBFWtekSGrbfOGNjC2I5lUr0lZSRblBllIFA,109
|
535
|
+
streamlit_nightly-1.36.1.dev20240628.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
|
536
|
+
streamlit_nightly-1.36.1.dev20240628.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
|
537
|
+
streamlit_nightly-1.36.1.dev20240628.dist-info/RECORD,,
|