streamlit-nightly 1.23.2.dev20230615__py2.py3-none-any.whl → 1.23.2.dev20230619__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/elements/bokeh_chart.py +1 -1
- streamlit/elements/button.py +2 -2
- streamlit/elements/checkbox.py +1 -1
- streamlit/elements/color_picker.py +1 -1
- streamlit/elements/dataframe_selector.py +9 -9
- streamlit/elements/deck_gl_json_chart.py +1 -1
- streamlit/elements/file_uploader.py +1 -1
- streamlit/elements/graphviz_chart.py +1 -1
- streamlit/elements/image.py +1 -1
- streamlit/elements/json.py +1 -1
- streamlit/elements/layouts.py +8 -8
- streamlit/elements/map.py +1 -1
- streamlit/elements/media.py +3 -3
- streamlit/elements/metric.py +3 -3
- streamlit/elements/multiselect.py +1 -1
- streamlit/elements/number_input.py +1 -1
- streamlit/elements/plotly_chart.py +1 -1
- streamlit/elements/pyplot.py +1 -1
- streamlit/elements/radio.py +1 -1
- streamlit/elements/select_slider.py +1 -1
- streamlit/elements/selectbox.py +1 -1
- streamlit/elements/slider.py +1 -1
- streamlit/elements/text_widgets.py +1 -1
- streamlit/elements/time_widgets.py +2 -2
- streamlit/elements/write.py +4 -4
- {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/METADATA +1 -1
- {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/RECORD +31 -31
- {streamlit_nightly-1.23.2.dev20230615.data → streamlit_nightly-1.23.2.dev20230619.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/top_level.txt +0 -0
streamlit/elements/button.py
CHANGED
@@ -138,7 +138,7 @@ class ButtonMixin:
|
|
138
138
|
... st.write('Goodbye')
|
139
139
|
|
140
140
|
.. output::
|
141
|
-
https://doc-buton.
|
141
|
+
https://doc-buton.streamlit.app/
|
142
142
|
height: 220px
|
143
143
|
|
144
144
|
"""
|
@@ -303,7 +303,7 @@ class ButtonMixin:
|
|
303
303
|
... )
|
304
304
|
|
305
305
|
.. output::
|
306
|
-
https://doc-download-buton.
|
306
|
+
https://doc-download-buton.streamlit.app/
|
307
307
|
height: 335px
|
308
308
|
|
309
309
|
"""
|
streamlit/elements/checkbox.py
CHANGED
@@ -120,7 +120,7 @@ class DataFrameSelectorMixin:
|
|
120
120
|
>>> st.dataframe(df) # Same as st.write(df)
|
121
121
|
|
122
122
|
.. output::
|
123
|
-
https://doc-dataframe.
|
123
|
+
https://doc-dataframe.streamlit.app/
|
124
124
|
height: 410px
|
125
125
|
|
126
126
|
You can also pass a Pandas Styler object to change the style of
|
@@ -137,7 +137,7 @@ class DataFrameSelectorMixin:
|
|
137
137
|
>>> st.dataframe(df.style.highlight_max(axis=0))
|
138
138
|
|
139
139
|
.. output::
|
140
|
-
https://doc-dataframe1.
|
140
|
+
https://doc-dataframe1.streamlit.app/
|
141
141
|
height: 410px
|
142
142
|
|
143
143
|
Or you can customize the dataframe via ``column_config``, ``hide_index``, or ``column_order``:
|
@@ -172,7 +172,7 @@ class DataFrameSelectorMixin:
|
|
172
172
|
>>> )
|
173
173
|
|
174
174
|
.. output::
|
175
|
-
https://doc-dataframe-config.
|
175
|
+
https://doc-dataframe-config.streamlit.app/
|
176
176
|
height: 350px
|
177
177
|
|
178
178
|
"""
|
@@ -218,7 +218,7 @@ class DataFrameSelectorMixin:
|
|
218
218
|
>>> st.table(df)
|
219
219
|
|
220
220
|
.. output::
|
221
|
-
https://doc-table.
|
221
|
+
https://doc-table.streamlit.app/
|
222
222
|
height: 480px
|
223
223
|
|
224
224
|
"""
|
@@ -293,7 +293,7 @@ class DataFrameSelectorMixin:
|
|
293
293
|
>>> st.line_chart(chart_data)
|
294
294
|
|
295
295
|
.. output::
|
296
|
-
https://doc-line-chart.
|
296
|
+
https://doc-line-chart.streamlit.app/
|
297
297
|
height: 400px
|
298
298
|
|
299
299
|
"""
|
@@ -380,7 +380,7 @@ class DataFrameSelectorMixin:
|
|
380
380
|
>>> st.area_chart(chart_data)
|
381
381
|
|
382
382
|
.. output::
|
383
|
-
https://doc-area-chart.
|
383
|
+
https://doc-area-chart.streamlit.app/
|
384
384
|
height: 400px
|
385
385
|
|
386
386
|
"""
|
@@ -467,7 +467,7 @@ class DataFrameSelectorMixin:
|
|
467
467
|
>>> st.bar_chart(chart_data)
|
468
468
|
|
469
469
|
.. output::
|
470
|
-
https://doc-bar-chart.
|
470
|
+
https://doc-bar-chart.streamlit.app/
|
471
471
|
height: 400px
|
472
472
|
|
473
473
|
"""
|
@@ -532,7 +532,7 @@ class DataFrameSelectorMixin:
|
|
532
532
|
https://altair-viz.github.io/gallery/.
|
533
533
|
|
534
534
|
.. output::
|
535
|
-
https://doc-vega-lite-chart.
|
535
|
+
https://doc-vega-lite-chart.streamlit.app/
|
536
536
|
height: 300px
|
537
537
|
|
538
538
|
"""
|
@@ -600,7 +600,7 @@ class DataFrameSelectorMixin:
|
|
600
600
|
... })
|
601
601
|
|
602
602
|
.. output::
|
603
|
-
https://doc-vega-lite-chart.
|
603
|
+
https://doc-vega-lite-chart.streamlit.app/
|
604
604
|
height: 300px
|
605
605
|
|
606
606
|
Examples of Vega-Lite usage without Streamlit can be found at
|
streamlit/elements/image.py
CHANGED
streamlit/elements/json.py
CHANGED
streamlit/elements/layouts.py
CHANGED
@@ -53,7 +53,7 @@ class LayoutsMixin:
|
|
53
53
|
>>> st.write("This is outside the container")
|
54
54
|
|
55
55
|
.. output ::
|
56
|
-
https://doc-container1.
|
56
|
+
https://doc-container1.streamlit.app/
|
57
57
|
height: 520px
|
58
58
|
|
59
59
|
Inserting elements out of order:
|
@@ -68,7 +68,7 @@ class LayoutsMixin:
|
|
68
68
|
>>> container.write("This is inside too")
|
69
69
|
|
70
70
|
.. output ::
|
71
|
-
https://doc-container2.
|
71
|
+
https://doc-container2.streamlit.app/
|
72
72
|
height: 480px
|
73
73
|
"""
|
74
74
|
return self.dg._block()
|
@@ -135,7 +135,7 @@ class LayoutsMixin:
|
|
135
135
|
... st.image("https://static.streamlit.io/examples/owl.jpg")
|
136
136
|
|
137
137
|
.. output ::
|
138
|
-
https://doc-columns1.
|
138
|
+
https://doc-columns1.streamlit.app/
|
139
139
|
height: 620px
|
140
140
|
|
141
141
|
Or you can just call methods directly in the returned objects:
|
@@ -153,7 +153,7 @@ class LayoutsMixin:
|
|
153
153
|
>>> col2.write(data)
|
154
154
|
|
155
155
|
.. output ::
|
156
|
-
https://doc-columns2.
|
156
|
+
https://doc-columns2.streamlit.app/
|
157
157
|
height: 550px
|
158
158
|
|
159
159
|
"""
|
@@ -270,7 +270,7 @@ class LayoutsMixin:
|
|
270
270
|
... st.image("https://static.streamlit.io/examples/owl.jpg", width=200)
|
271
271
|
|
272
272
|
.. output ::
|
273
|
-
https://doc-tabs1.
|
273
|
+
https://doc-tabs1.streamlit.app/
|
274
274
|
height: 620px
|
275
275
|
|
276
276
|
Or you can just call methods directly in the returned objects:
|
@@ -289,7 +289,7 @@ class LayoutsMixin:
|
|
289
289
|
|
290
290
|
|
291
291
|
.. output ::
|
292
|
-
https://doc-tabs2.
|
292
|
+
https://doc-tabs2.streamlit.app/
|
293
293
|
height: 700px
|
294
294
|
|
295
295
|
"""
|
@@ -374,7 +374,7 @@ class LayoutsMixin:
|
|
374
374
|
... st.image("https://static.streamlit.io/examples/dice.jpg")
|
375
375
|
|
376
376
|
.. output ::
|
377
|
-
https://doc-expander.
|
377
|
+
https://doc-expander.streamlit.app/
|
378
378
|
height: 750px
|
379
379
|
|
380
380
|
Or you can just call methods directly in the returned objects:
|
@@ -392,7 +392,7 @@ class LayoutsMixin:
|
|
392
392
|
>>> expander.image("https://static.streamlit.io/examples/dice.jpg")
|
393
393
|
|
394
394
|
.. output ::
|
395
|
-
https://doc-expander.
|
395
|
+
https://doc-expander.streamlit.app/
|
396
396
|
height: 750px
|
397
397
|
|
398
398
|
"""
|
streamlit/elements/map.py
CHANGED
streamlit/elements/media.py
CHANGED
@@ -91,7 +91,7 @@ class MediaMixin:
|
|
91
91
|
>>> st.audio(note_la, sample_rate=sample_rate)
|
92
92
|
|
93
93
|
.. output::
|
94
|
-
https://doc-audio.
|
94
|
+
https://doc-audio.streamlit.app/
|
95
95
|
height: 865px
|
96
96
|
|
97
97
|
"""
|
@@ -146,7 +146,7 @@ class MediaMixin:
|
|
146
146
|
>>> st.video(video_bytes)
|
147
147
|
|
148
148
|
.. output::
|
149
|
-
https://doc-video.
|
149
|
+
https://doc-video.streamlit.app/
|
150
150
|
height: 700px
|
151
151
|
|
152
152
|
.. note::
|
@@ -323,7 +323,7 @@ def _validate_and_normalize(data: "npt.NDArray[Any]") -> Tuple[bytes, int]:
|
|
323
323
|
# to st.audio data)
|
324
324
|
import numpy as np
|
325
325
|
|
326
|
-
data = np.array(data, dtype=float)
|
326
|
+
data: "npt.NDArray[Any]" = np.array(data, dtype=float)
|
327
327
|
|
328
328
|
if len(data.shape) == 1:
|
329
329
|
nchan = 1
|
streamlit/elements/metric.py
CHANGED
@@ -113,7 +113,7 @@ class MetricMixin:
|
|
113
113
|
>>> st.metric(label="Temperature", value="70 °F", delta="1.2 °F")
|
114
114
|
|
115
115
|
.. output::
|
116
|
-
https://doc-metric-example1.
|
116
|
+
https://doc-metric-example1.streamlit.app/
|
117
117
|
height: 210px
|
118
118
|
|
119
119
|
``st.metric`` looks especially nice in combination with ``st.columns``:
|
@@ -126,7 +126,7 @@ class MetricMixin:
|
|
126
126
|
>>> col3.metric("Humidity", "86%", "4%")
|
127
127
|
|
128
128
|
.. output::
|
129
|
-
https://doc-metric-example2.
|
129
|
+
https://doc-metric-example2.streamlit.app/
|
130
130
|
height: 210px
|
131
131
|
|
132
132
|
The delta indicator color can also be inverted or turned off:
|
@@ -140,7 +140,7 @@ class MetricMixin:
|
|
140
140
|
... delta_color="off")
|
141
141
|
|
142
142
|
.. output::
|
143
|
-
https://doc-metric-example3.
|
143
|
+
https://doc-metric-example3.streamlit.app/
|
144
144
|
height: 320px
|
145
145
|
|
146
146
|
"""
|
streamlit/elements/pyplot.py
CHANGED
streamlit/elements/radio.py
CHANGED
streamlit/elements/selectbox.py
CHANGED
streamlit/elements/slider.py
CHANGED
@@ -297,7 +297,7 @@ class TimeWidgetsMixin:
|
|
297
297
|
>>> st.write('Alarm is set for', t)
|
298
298
|
|
299
299
|
.. output::
|
300
|
-
https://doc-time-input.
|
300
|
+
https://doc-time-input.streamlit.app/
|
301
301
|
height: 260px
|
302
302
|
|
303
303
|
"""
|
@@ -489,7 +489,7 @@ class TimeWidgetsMixin:
|
|
489
489
|
>>> st.write('Your birthday is:', d)
|
490
490
|
|
491
491
|
.. output::
|
492
|
-
https://doc-date-input.
|
492
|
+
https://doc-date-input.streamlit.app/
|
493
493
|
height: 260px
|
494
494
|
|
495
495
|
"""
|
streamlit/elements/write.py
CHANGED
@@ -108,7 +108,7 @@ class WriteMixin:
|
|
108
108
|
>>> st.write('Hello, *World!* :sunglasses:')
|
109
109
|
|
110
110
|
.. output::
|
111
|
-
https://doc-write1.
|
111
|
+
https://doc-write1.streamlit.app/
|
112
112
|
height: 150px
|
113
113
|
|
114
114
|
As mentioned earlier, ``st.write()`` also accepts other data formats, such as
|
@@ -124,7 +124,7 @@ class WriteMixin:
|
|
124
124
|
... }))
|
125
125
|
|
126
126
|
.. output::
|
127
|
-
https://doc-write2.
|
127
|
+
https://doc-write2.streamlit.app/
|
128
128
|
height: 350px
|
129
129
|
|
130
130
|
Finally, you can pass in multiple arguments to do things like:
|
@@ -135,7 +135,7 @@ class WriteMixin:
|
|
135
135
|
>>> st.write('Below is a DataFrame:', data_frame, 'Above is a dataframe.')
|
136
136
|
|
137
137
|
.. output::
|
138
|
-
https://doc-write3.
|
138
|
+
https://doc-write3.streamlit.app/
|
139
139
|
height: 410px
|
140
140
|
|
141
141
|
Oh, one more thing: ``st.write`` accepts chart objects too! For example:
|
@@ -155,7 +155,7 @@ class WriteMixin:
|
|
155
155
|
>>> st.write(c)
|
156
156
|
|
157
157
|
.. output::
|
158
|
-
https://doc-vega-lite-chart.
|
158
|
+
https://doc-vega-lite-chart.streamlit.app/
|
159
159
|
height: 300px
|
160
160
|
|
161
161
|
"""
|
@@ -49,49 +49,49 @@ streamlit/elements/arrow.py,sha256=QB3IzVHm-S7JURGYZOPpBmL9ImiRKKXwjEzj3KwZ64E,1
|
|
49
49
|
streamlit/elements/arrow_altair.py,sha256=Ea8VTfg0O_aNYY8YmsTGo3bM2368vKETn6cNGTUpygs,21723
|
50
50
|
streamlit/elements/arrow_vega_lite.py,sha256=-mFJd6neq6okPDvX7Mj6JvH_pVatk2IIHZDR3tyhRdA,7196
|
51
51
|
streamlit/elements/balloons.py,sha256=ivpqNv0PLw6wJDz9Fl1T0zC3r-QLpL0BYMPvs0S2gFg,1445
|
52
|
-
streamlit/elements/bokeh_chart.py,sha256=
|
53
|
-
streamlit/elements/button.py,sha256=
|
52
|
+
streamlit/elements/bokeh_chart.py,sha256=q0oDLsMwdHjkTAyGMaSXH6BvoeglwfofT8q5fRQ2DKY,3853
|
53
|
+
streamlit/elements/button.py,sha256=u2vxc8f5K11QkEr4xm040eGlCGBiiwKMn4M1-5juAZA,18336
|
54
54
|
streamlit/elements/camera_input.py,sha256=u9sinM7e94EEqVALxWBSHTXmZHWyDsbGm5OQsKgqj8Y,10081
|
55
|
-
streamlit/elements/checkbox.py,sha256=
|
55
|
+
streamlit/elements/checkbox.py,sha256=7I7WP-HXtkC_Flb9i0DKwYC8nqckotFveRFr8GoSHc0,7497
|
56
56
|
streamlit/elements/code.py,sha256=MWmsSNPtYtVuaqD-GJFIeoc8GETXyz6Xgu5AiBFlqYo,2452
|
57
|
-
streamlit/elements/color_picker.py,sha256=
|
57
|
+
streamlit/elements/color_picker.py,sha256=oZC_G8QUbQdfj71mcJTFM-b3oK-pS1LRSmacW7l0UB4,8644
|
58
58
|
streamlit/elements/data_editor.py,sha256=4wEFt-H0YcNm0gna8aH2rL_HHs8DVGMe5_B32fYOoMk,31885
|
59
|
-
streamlit/elements/dataframe_selector.py,sha256=
|
60
|
-
streamlit/elements/deck_gl_json_chart.py,sha256
|
59
|
+
streamlit/elements/dataframe_selector.py,sha256=7yUGWsyUKt8U_bOnkQ9FtYmxFYSGmadq7lrSitHEAh4,26460
|
60
|
+
streamlit/elements/deck_gl_json_chart.py,sha256=-e8bFxQ5nUi0jyAx5lKEXhTzWdBOqD8N7yGagPmIVDU,5897
|
61
61
|
streamlit/elements/doc_string.py,sha256=4FicKk0nkE1QaqZtharJDQpn5-ErQLh9LFFbjZySjRo,16515
|
62
62
|
streamlit/elements/empty.py,sha256=Uq8i2Lr_PPa2As97dQFaHvmsp4sFQnkxl940rHY9pDo,2598
|
63
63
|
streamlit/elements/exception.py,sha256=mODDi3pLy3_gMzruyL5mbCR15QSOlC67SGIZj0SsYhA,9131
|
64
|
-
streamlit/elements/file_uploader.py,sha256=
|
64
|
+
streamlit/elements/file_uploader.py,sha256=cIJGCa-BjHdI0AzevBAKse9EItBZTOoscZW2cwjGAm4,17403
|
65
65
|
streamlit/elements/form.py,sha256=VSweWgaf0Mx3Kd6ZgPFs279r_ZB8XRolbkJGwv6lNGw,11437
|
66
|
-
streamlit/elements/graphviz_chart.py,sha256=
|
66
|
+
streamlit/elements/graphviz_chart.py,sha256=GFYwEboDq3GOhpTG6-X24Ht7QdoBLDojVSChk-TYHtg,4458
|
67
67
|
streamlit/elements/heading.py,sha256=Ec3kBkzKA2R7gYSWyH6u62q5oAQvYhifEbB1-QhKT0o,8217
|
68
68
|
streamlit/elements/iframe.py,sha256=ZfVykhNz5BbfaZpnaah1bMezsa1aAzyA0C4cK2Qp_Ks,4382
|
69
|
-
streamlit/elements/image.py,sha256=
|
70
|
-
streamlit/elements/json.py,sha256=
|
71
|
-
streamlit/elements/layouts.py,sha256=
|
69
|
+
streamlit/elements/image.py,sha256=Vfp-kQSJILcYeKXZrf3KKHX4zURwGc690yli6JF5klE,19954
|
70
|
+
streamlit/elements/json.py,sha256=JIQ52ROJ_orW-LaivOaWfO9MQucGtXVqUHEIA4GbUFg,3370
|
71
|
+
streamlit/elements/layouts.py,sha256=fv-SV2FfpXdplf4b7ZAzduRmbJ_SEDBOKxmetuLghDc,15435
|
72
72
|
streamlit/elements/legacy_altair.py,sha256=0QVpgq3yIYy7z-8BqVx4tnflb1oehecTXeHm5H3SxgM,13193
|
73
73
|
streamlit/elements/legacy_data_frame.py,sha256=s5HaAaDv_jxO2hqVAloAkJKRfnLqScQnc6gjrAgHGp8,17792
|
74
74
|
streamlit/elements/legacy_vega_lite.py,sha256=KDEpWsYKSV_p5X3A3GDKoofxSuzO6grcO0QM1fsZrqY,6649
|
75
|
-
streamlit/elements/map.py,sha256=
|
75
|
+
streamlit/elements/map.py,sha256=moou2T6w4UVI_cnlGAsD7x71AQZka_efMJolGX1R_BM,7965
|
76
76
|
streamlit/elements/markdown.py,sha256=c6CaXKi0Nf9cEYYfGkJ6kvrY59mxjyySVYHOPZ5e9ZA,9392
|
77
|
-
streamlit/elements/media.py,sha256=
|
78
|
-
streamlit/elements/metric.py,sha256=
|
79
|
-
streamlit/elements/multiselect.py,sha256=
|
80
|
-
streamlit/elements/number_input.py,sha256=
|
81
|
-
streamlit/elements/plotly_chart.py,sha256=
|
77
|
+
streamlit/elements/media.py,sha256=3UeFP2ny5EfeWB7NVWsNvIkZKP3D9s0SuSj6BP8OsUo,14744
|
78
|
+
streamlit/elements/metric.py,sha256=N5x-60Wt87rfHADXzSUBfAYRqVcy6W6u1O-wlexWR9E,9904
|
79
|
+
streamlit/elements/multiselect.py,sha256=dAMlSXXRwFT1lBJGYbEsOMoOQnnTdu2EuJukymob5_0,12420
|
80
|
+
streamlit/elements/number_input.py,sha256=kB37X5bMzm1PmNi5AksQO9_u4FDX0y9tlMOuGe3xnuE,14667
|
81
|
+
streamlit/elements/plotly_chart.py,sha256=OxzKdlLpM5URPDy7RMpRvLobwPX9VWhUEyfKF3JpQi4,8820
|
82
82
|
streamlit/elements/progress.py,sha256=Xd-rj3wAGZ0sbHJV3HQ1fHy_rBFPl4hg6OcdeWzCUlU,4492
|
83
|
-
streamlit/elements/pyplot.py,sha256=
|
84
|
-
streamlit/elements/radio.py,sha256=
|
85
|
-
streamlit/elements/select_slider.py,sha256=
|
86
|
-
streamlit/elements/selectbox.py,sha256
|
87
|
-
streamlit/elements/slider.py,sha256=
|
83
|
+
streamlit/elements/pyplot.py,sha256=H76JVouhFI1jxzssftKS0s9W1f3MLoF_glf535b18K4,6557
|
84
|
+
streamlit/elements/radio.py,sha256=V33h5VocIlFdCbrMTTHioVW1rbQBncXGlcOAPqjs2Es,9848
|
85
|
+
streamlit/elements/select_slider.py,sha256=Vlo54RodHDqIoiYdY8CegifvT8-3kQGZEysjuezHOWs,12390
|
86
|
+
streamlit/elements/selectbox.py,sha256=-GI986WUnz5X2FYc7TU3sNCY6QWQb8uJYtRS_HABRCA,9324
|
87
|
+
streamlit/elements/slider.py,sha256=h7zvX57Blv1NVv6NyrfCmAkNFGsC5OdPwh7fIJgy4XE,25101
|
88
88
|
streamlit/elements/snow.py,sha256=HM26jOst6tTMVkVhHD_KiED34o_mT6yyj8hBW923hwI,1402
|
89
89
|
streamlit/elements/spinner.py,sha256=hVB-S99rKT4v6tonoYwJ5lrceq_qPFkvGj3yuBcNjUM,3076
|
90
90
|
streamlit/elements/text.py,sha256=2lKwoOX07RoCxxf6tytLgyowCmyiSy-R1Y1N7aAlqd4,1834
|
91
|
-
streamlit/elements/text_widgets.py,sha256=
|
92
|
-
streamlit/elements/time_widgets.py,sha256=
|
91
|
+
streamlit/elements/text_widgets.py,sha256=NkgCy4vVlYh9Df84GkkUjIvSn2NcUNyyRA8chOcXX7A,17722
|
92
|
+
streamlit/elements/time_widgets.py,sha256=2QTHIdpFx-AMWe6BZTRaySpaSxcr4v88bn94O5pc7eY,22010
|
93
93
|
streamlit/elements/utils.py,sha256=Z15-4dBOIKgIiZGbUaUva1GNfpFryB_cmNmfx5DbSII,3507
|
94
|
-
streamlit/elements/write.py,sha256=
|
94
|
+
streamlit/elements/write.py,sha256=7EwZvf8SfUaJ9lgButiLj3QR5Ny1P6tPT5KwnqVc908,10181
|
95
95
|
streamlit/elements/lib/__init__.py,sha256=LTDGDB-ahkVmBP0P6YP2tyR5e1QTnVTSb1f3yZWi7go,611
|
96
96
|
streamlit/elements/lib/column_config_utils.py,sha256=O4k0wtBHi_8_kZatCGs4kToXiRtU7eZTRJQyiBMG5TU,16319
|
97
97
|
streamlit/elements/lib/column_types.py,sha256=_r8zKHZaZI1vGVGCN6XWHlz9mVYScorNfNfFtOPzBnQ,47110
|
@@ -402,9 +402,9 @@ streamlit/web/server/server_util.py,sha256=XJ9ngvipySXQqncV30nAn_QVnjYXvvl9j5aMq
|
|
402
402
|
streamlit/web/server/stats_request_handler.py,sha256=rJelIrHJAz4EGctKLnixEbEVetrXcsDVYp7la033tGE,3405
|
403
403
|
streamlit/web/server/upload_file_request_handler.py,sha256=jyfvPcGSr_IELU3DE75z7GpHYyix0w1ONu3aAoP5BWI,5964
|
404
404
|
streamlit/web/server/websocket_headers.py,sha256=oTieGEZ16m1cmZMuus_fwgTIWF9LUFvCtmls2_GivgA,1867
|
405
|
-
streamlit_nightly-1.23.2.
|
406
|
-
streamlit_nightly-1.23.2.
|
407
|
-
streamlit_nightly-1.23.2.
|
408
|
-
streamlit_nightly-1.23.2.
|
409
|
-
streamlit_nightly-1.23.2.
|
410
|
-
streamlit_nightly-1.23.2.
|
405
|
+
streamlit_nightly-1.23.2.dev20230619.data/scripts/streamlit.cmd,sha256=bIvl64RLCLmXTMo-YWqncINDWHlgQx_RgPvL41gYGh4,671
|
406
|
+
streamlit_nightly-1.23.2.dev20230619.dist-info/METADATA,sha256=9feXFFNLqOcRRlP6zZVArUsvA5vNL3ahnWotyf0r9Vk,8115
|
407
|
+
streamlit_nightly-1.23.2.dev20230619.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
|
408
|
+
streamlit_nightly-1.23.2.dev20230619.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
|
409
|
+
streamlit_nightly-1.23.2.dev20230619.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
|
410
|
+
streamlit_nightly-1.23.2.dev20230619.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|