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.
Files changed (31) hide show
  1. streamlit/elements/bokeh_chart.py +1 -1
  2. streamlit/elements/button.py +2 -2
  3. streamlit/elements/checkbox.py +1 -1
  4. streamlit/elements/color_picker.py +1 -1
  5. streamlit/elements/dataframe_selector.py +9 -9
  6. streamlit/elements/deck_gl_json_chart.py +1 -1
  7. streamlit/elements/file_uploader.py +1 -1
  8. streamlit/elements/graphviz_chart.py +1 -1
  9. streamlit/elements/image.py +1 -1
  10. streamlit/elements/json.py +1 -1
  11. streamlit/elements/layouts.py +8 -8
  12. streamlit/elements/map.py +1 -1
  13. streamlit/elements/media.py +3 -3
  14. streamlit/elements/metric.py +3 -3
  15. streamlit/elements/multiselect.py +1 -1
  16. streamlit/elements/number_input.py +1 -1
  17. streamlit/elements/plotly_chart.py +1 -1
  18. streamlit/elements/pyplot.py +1 -1
  19. streamlit/elements/radio.py +1 -1
  20. streamlit/elements/select_slider.py +1 -1
  21. streamlit/elements/selectbox.py +1 -1
  22. streamlit/elements/slider.py +1 -1
  23. streamlit/elements/text_widgets.py +1 -1
  24. streamlit/elements/time_widgets.py +2 -2
  25. streamlit/elements/write.py +4 -4
  26. {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/METADATA +1 -1
  27. {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/RECORD +31 -31
  28. {streamlit_nightly-1.23.2.dev20230615.data → streamlit_nightly-1.23.2.dev20230619.data}/scripts/streamlit.cmd +0 -0
  29. {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/WHEEL +0 -0
  30. {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/entry_points.txt +0 -0
  31. {streamlit_nightly-1.23.2.dev20230615.dist-info → streamlit_nightly-1.23.2.dev20230619.dist-info}/top_level.txt +0 -0
@@ -75,7 +75,7 @@ class BokehMixin:
75
75
  >>> st.bokeh_chart(p, use_container_width=True)
76
76
 
77
77
  .. output::
78
- https://doc-bokeh-chart.streamlitapp.com/
78
+ https://doc-bokeh-chart.streamlit.app/
79
79
  height: 700px
80
80
 
81
81
  """
@@ -138,7 +138,7 @@ class ButtonMixin:
138
138
  ... st.write('Goodbye')
139
139
 
140
140
  .. output::
141
- https://doc-buton.streamlitapp.com/
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.streamlitapp.com/
306
+ https://doc-download-buton.streamlit.app/
307
307
  height: 335px
308
308
 
309
309
  """
@@ -129,7 +129,7 @@ class CheckboxMixin:
129
129
  ... st.write('Great!')
130
130
 
131
131
  .. output::
132
- https://doc-checkbox.streamlitapp.com/
132
+ https://doc-checkbox.streamlit.app/
133
133
  height: 220px
134
134
 
135
135
  """
@@ -133,7 +133,7 @@ class ColorPickerMixin:
133
133
  >>> st.write('The current color is', color)
134
134
 
135
135
  .. output::
136
- https://doc-color-picker.streamlitapp.com/
136
+ https://doc-color-picker.streamlit.app/
137
137
  height: 335px
138
138
 
139
139
  """
@@ -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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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
@@ -113,7 +113,7 @@ class PydeckMixin:
113
113
  ... ))
114
114
 
115
115
  .. output::
116
- https://doc-pydeck-chart.streamlitapp.com/
116
+ https://doc-pydeck-chart.streamlit.app/
117
117
  height: 530px
118
118
 
119
119
  .. note::
@@ -349,7 +349,7 @@ class FileUploaderMixin:
349
349
  ... st.write(bytes_data)
350
350
 
351
351
  .. output::
352
- https://doc-file-uploader.streamlitapp.com/
352
+ https://doc-file-uploader.streamlit.app/
353
353
  height: 375px
354
354
 
355
355
  """
@@ -98,7 +98,7 @@ class GraphvizMixin:
98
98
  ''')
99
99
 
100
100
  .. output::
101
- https://doc-graphviz-chart.streamlitapp.com/
101
+ https://doc-graphviz-chart.streamlit.app/
102
102
  height: 600px
103
103
 
104
104
  """
@@ -151,7 +151,7 @@ class ImageMixin:
151
151
  >>> st.image(image, caption='Sunrise by the mountains')
152
152
 
153
153
  .. output::
154
- https://doc-image.streamlitapp.com/
154
+ https://doc-image.streamlit.app/
155
155
  height: 710px
156
156
 
157
157
  """
@@ -69,7 +69,7 @@ class JsonMixin:
69
69
  ... })
70
70
 
71
71
  .. output::
72
- https://doc-json.streamlitapp.com/
72
+ https://doc-json.streamlit.app/
73
73
  height: 385px
74
74
 
75
75
  """
@@ -53,7 +53,7 @@ class LayoutsMixin:
53
53
  >>> st.write("This is outside the container")
54
54
 
55
55
  .. output ::
56
- https://doc-container1.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
395
+ https://doc-expander.streamlit.app/
396
396
  height: 750px
397
397
 
398
398
  """
streamlit/elements/map.py CHANGED
@@ -125,7 +125,7 @@ class MapMixin:
125
125
  >>> st.map(df)
126
126
 
127
127
  .. output::
128
- https://doc-map.streamlitapp.com/
128
+ https://doc-map.streamlit.app/
129
129
  height: 650px
130
130
 
131
131
  """
@@ -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.streamlitapp.com/
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.streamlitapp.com/
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
@@ -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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
143
+ https://doc-metric-example3.streamlit.app/
144
144
  height: 320px
145
145
 
146
146
  """
@@ -243,7 +243,7 @@ class MultiSelectMixin:
243
243
  >>> st.write('You selected:', options)
244
244
 
245
245
  .. output::
246
- https://doc-multiselect.streamlitapp.com/
246
+ https://doc-multiselect.streamlit.app/
247
247
  height: 420px
248
248
 
249
249
  """
@@ -171,7 +171,7 @@ class NumberInputMixin:
171
171
  >>> st.write('The current number is ', number)
172
172
 
173
173
  .. output::
174
- https://doc-number-input.streamlitapp.com/
174
+ https://doc-number-input.streamlit.app/
175
175
  height: 260px
176
176
 
177
177
  """
@@ -147,7 +147,7 @@ class PlotlyMixin:
147
147
  >>> st.plotly_chart(fig, use_container_width=True)
148
148
 
149
149
  .. output::
150
- https://doc-plotly-chart.streamlitapp.com/
150
+ https://doc-plotly-chart.streamlit.app/
151
151
  height: 400px
152
152
 
153
153
  """
@@ -81,7 +81,7 @@ class PyplotMixin:
81
81
  >>> st.pyplot(fig)
82
82
 
83
83
  .. output::
84
- https://doc-pyplot.streamlitapp.com/
84
+ https://doc-pyplot.streamlit.app/
85
85
  height: 630px
86
86
 
87
87
  Notes
@@ -176,7 +176,7 @@ class RadioMixin:
176
176
  ... st.write("You didn\'t select comedy.")
177
177
 
178
178
  .. output::
179
- https://doc-radio.streamlitapp.com/
179
+ https://doc-radio.streamlit.app/
180
180
  height: 260px
181
181
 
182
182
  """
@@ -220,7 +220,7 @@ class SelectSliderMixin:
220
220
  >>> st.write('You selected wavelengths between', start_color, 'and', end_color)
221
221
 
222
222
  .. output::
223
- https://doc-select-slider.streamlitapp.com/
223
+ https://doc-select-slider.streamlit.app/
224
224
  height: 450px
225
225
 
226
226
  """
@@ -160,7 +160,7 @@ class SelectboxMixin:
160
160
  >>> st.write('You selected:', option)
161
161
 
162
162
  .. output::
163
- https://doc-selectbox.streamlitapp.com/
163
+ https://doc-selectbox.streamlit.app/
164
164
  height: 320px
165
165
 
166
166
  """
@@ -329,7 +329,7 @@ class SliderMixin:
329
329
  >>> st.write("Start time:", start_time)
330
330
 
331
331
  .. output::
332
- https://doc-slider.streamlitapp.com/
332
+ https://doc-slider.streamlit.app/
333
333
  height: 300px
334
334
 
335
335
  """
@@ -168,7 +168,7 @@ class TextWidgetsMixin:
168
168
  >>> st.write('The current movie title is', title)
169
169
 
170
170
  .. output::
171
- https://doc-text-input.streamlitapp.com/
171
+ https://doc-text-input.streamlit.app/
172
172
  height: 260px
173
173
 
174
174
  """
@@ -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.streamlitapp.com/
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.streamlitapp.com/
492
+ https://doc-date-input.streamlit.app/
493
493
  height: 260px
494
494
 
495
495
  """
@@ -108,7 +108,7 @@ class WriteMixin:
108
108
  >>> st.write('Hello, *World!* :sunglasses:')
109
109
 
110
110
  .. output::
111
- https://doc-write1.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
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.streamlitapp.com/
158
+ https://doc-vega-lite-chart.streamlit.app/
159
159
  height: 300px
160
160
 
161
161
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: streamlit-nightly
3
- Version: 1.23.2.dev20230615
3
+ Version: 1.23.2.dev20230619
4
4
  Summary: A faster way to build and share data apps
5
5
  Home-page: https://streamlit.io
6
6
  Author: Snowflake Inc
@@ -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=biSeXG9wUVs8uJ0ms5ekfZ0DzKzawG1OeTluU36YPqQ,3856
53
- streamlit/elements/button.py,sha256=5Wmr0tIOFkU-cWESx1X6B58DZlCDP-XV2NcSFpxC78k,18342
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=HFBc7NDmaQnEr3t7OQ0aK9OvESAY7GAA2OL43B1tU1s,7500
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=FQGSNvfxdsyG9AQAhOOuJKAcamqWA6fy34pZclWh6OU,8647
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=weajM9eP-i6LYhtoXhJSNhzUVUPaTPSN6OI6yNX33yw,26487
60
- streamlit/elements/deck_gl_json_chart.py,sha256=ew_NJlW0r7zWwwNjW5Fgi_WzKtfWkGEpMLeQStX26f4,5900
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=T84T3-mKPDvz-pvaiml2pjY_m_aJqIvue3afdWl9za4,17406
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=TxOwwJAWACW4_0p3ZbOmG-ZcwjNtKH0wwD7zWQUQTqk,4461
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=IIv8WSSve4Z7bd-hR1mRTjIgB4XBzgwcaWWz9djLbqc,19957
70
- streamlit/elements/json.py,sha256=2Q9K5-BLa7-vh8ZB7bL2av2WieaymLmuCH4Nvepz4y0,3373
71
- streamlit/elements/layouts.py,sha256=4lSt4KcxcjQcBoPIQg3mZYjJDo_0LaA2XT6AI-J1vNU,15459
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=tqqCBvErmMQK72OPmOVo54GbpnXF_mHsf3rrW3uz_Yw,7968
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=ATJLJQrEmpFssaKY966xmQ3sBRIKOPcqFGzTWMxXgDk,14730
78
- streamlit/elements/metric.py,sha256=G-Ht2ETiwYMLE4GmWDtBPWNBhYPLXftPbmqPvaQs11I,9913
79
- streamlit/elements/multiselect.py,sha256=mCPQ1Q_A2jYb6LWTNFKPkocrD8DMiUimS3cGW59wjrM,12423
80
- streamlit/elements/number_input.py,sha256=d36uc6Jqaq98iFkV-MjA1rEkoUzuqnf0BcUc0MrvqQg,14670
81
- streamlit/elements/plotly_chart.py,sha256=4_RuiUnjaVCQq8PZeVLbBzEPke-ovuhWC2LsZj8a374,8823
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=kDfQ5bzhTxc3A14Nqd918b8jcQRa_1tqTovr2PBPOBg,6560
84
- streamlit/elements/radio.py,sha256=AxVDkvMBYE9t6I4FxBC0RZp9yn5t8nb7VsudZzwcbfw,9851
85
- streamlit/elements/select_slider.py,sha256=HxYCw0t8cR66pL6BJHwCEcdYo7jmPCNkkZNrYKjJo9Q,12393
86
- streamlit/elements/selectbox.py,sha256=DnOSjs2JyrJh_d2H7--a8jiOqhVM2xTtme5stMl2osM,9327
87
- streamlit/elements/slider.py,sha256=N7bw-Nry9QuRi0PwIBsPZbcMidkMxhSITYgn-9T_LW4,25104
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=lJSqp7lQ5jK1G-GyTmwhWa_i0NMkP0GKV2zToInAobo,17725
92
- streamlit/elements/time_widgets.py,sha256=050bVt9RmXTbtUdOLV12bRjUaxMy_L1D7cPXNG6A9dg,22016
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=OSYtxbPniEa7FZe8XkhtMJYD9Xvh4GVDcmV2pB78j_Q,10193
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.dev20230615.data/scripts/streamlit.cmd,sha256=bIvl64RLCLmXTMo-YWqncINDWHlgQx_RgPvL41gYGh4,671
406
- streamlit_nightly-1.23.2.dev20230615.dist-info/METADATA,sha256=eNXAUZWGJDXLhSTSSz_wRXJQJ7ImLLnvc7CT77E6104,8115
407
- streamlit_nightly-1.23.2.dev20230615.dist-info/WHEEL,sha256=a-zpFRIJzOq5QfuhBzbhiA1eHTzNCJn8OdRvhdNX0Rk,110
408
- streamlit_nightly-1.23.2.dev20230615.dist-info/entry_points.txt,sha256=uNJ4DwGNXEhOK0USwSNanjkYyR-Bk7eYQbJFDrWyOgY,53
409
- streamlit_nightly-1.23.2.dev20230615.dist-info/top_level.txt,sha256=V3FhKbm7G2LnR0s4SytavrjIPNIhvcsAGXfYHAwtQzw,10
410
- streamlit_nightly-1.23.2.dev20230615.dist-info/RECORD,,
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,,