streamlit-data-editor-plus 0.1.0__tar.gz

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 (463) hide show
  1. streamlit_data_editor_plus-0.1.0/MANIFEST.in +3 -0
  2. streamlit_data_editor_plus-0.1.0/PKG-INFO +76 -0
  3. streamlit_data_editor_plus-0.1.0/pyproject.toml +230 -0
  4. streamlit_data_editor_plus-0.1.0/setup.cfg +4 -0
  5. streamlit_data_editor_plus-0.1.0/streamlit/__init__.py +292 -0
  6. streamlit_data_editor_plus-0.1.0/streamlit/__main__.py +20 -0
  7. streamlit_data_editor_plus-0.1.0/streamlit/auth_util.py +583 -0
  8. streamlit_data_editor_plus-0.1.0/streamlit/cli_util.py +107 -0
  9. streamlit_data_editor_plus-0.1.0/streamlit/column_config.py +60 -0
  10. streamlit_data_editor_plus-0.1.0/streamlit/commands/__init__.py +13 -0
  11. streamlit_data_editor_plus-0.1.0/streamlit/commands/echo.py +128 -0
  12. streamlit_data_editor_plus-0.1.0/streamlit/commands/execution_control.py +318 -0
  13. streamlit_data_editor_plus-0.1.0/streamlit/commands/logo.py +250 -0
  14. streamlit_data_editor_plus-0.1.0/streamlit/commands/navigation.py +430 -0
  15. streamlit_data_editor_plus-0.1.0/streamlit/commands/page_config.py +335 -0
  16. streamlit_data_editor_plus-0.1.0/streamlit/components/__init__.py +13 -0
  17. streamlit_data_editor_plus-0.1.0/streamlit/components/lib/__init__.py +13 -0
  18. streamlit_data_editor_plus-0.1.0/streamlit/components/lib/local_component_registry.py +84 -0
  19. streamlit_data_editor_plus-0.1.0/streamlit/components/types/__init__.py +13 -0
  20. streamlit_data_editor_plus-0.1.0/streamlit/components/types/base_component_registry.py +99 -0
  21. streamlit_data_editor_plus-0.1.0/streamlit/components/types/base_custom_component.py +158 -0
  22. streamlit_data_editor_plus-0.1.0/streamlit/components/v1/__init__.py +29 -0
  23. streamlit_data_editor_plus-0.1.0/streamlit/components/v1/component_arrow.py +141 -0
  24. streamlit_data_editor_plus-0.1.0/streamlit/components/v1/component_registry.py +147 -0
  25. streamlit_data_editor_plus-0.1.0/streamlit/components/v1/components.py +38 -0
  26. streamlit_data_editor_plus-0.1.0/streamlit/components/v1/custom_component.py +239 -0
  27. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/__init__.py +531 -0
  28. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/bidi_component/__init__.py +20 -0
  29. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/bidi_component/constants.py +29 -0
  30. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/bidi_component/main.py +537 -0
  31. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/bidi_component/serialization.py +272 -0
  32. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/bidi_component/state.py +92 -0
  33. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/component_definition_resolver.py +143 -0
  34. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/component_file_watcher.py +403 -0
  35. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/component_manager.py +439 -0
  36. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/component_manifest_handler.py +122 -0
  37. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/component_path_utils.py +233 -0
  38. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/component_registry.py +426 -0
  39. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/get_bidi_component_manager.py +51 -0
  40. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/manifest_scanner.py +620 -0
  41. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/presentation.py +198 -0
  42. streamlit_data_editor_plus-0.1.0/streamlit/components/v2/types.py +317 -0
  43. streamlit_data_editor_plus-0.1.0/streamlit/config.py +2977 -0
  44. streamlit_data_editor_plus-0.1.0/streamlit/config_option.py +319 -0
  45. streamlit_data_editor_plus-0.1.0/streamlit/config_util.py +887 -0
  46. streamlit_data_editor_plus-0.1.0/streamlit/connections/__init__.py +32 -0
  47. streamlit_data_editor_plus-0.1.0/streamlit/connections/base_connection.py +215 -0
  48. streamlit_data_editor_plus-0.1.0/streamlit/connections/snowflake_connection.py +765 -0
  49. streamlit_data_editor_plus-0.1.0/streamlit/connections/snowpark_connection.py +213 -0
  50. streamlit_data_editor_plus-0.1.0/streamlit/connections/sql_connection.py +427 -0
  51. streamlit_data_editor_plus-0.1.0/streamlit/connections/util.py +97 -0
  52. streamlit_data_editor_plus-0.1.0/streamlit/cursor.py +314 -0
  53. streamlit_data_editor_plus-0.1.0/streamlit/dataframe_util.py +1434 -0
  54. streamlit_data_editor_plus-0.1.0/streamlit/delta_generator.py +696 -0
  55. streamlit_data_editor_plus-0.1.0/streamlit/delta_generator_singletons.py +243 -0
  56. streamlit_data_editor_plus-0.1.0/streamlit/deprecation_util.py +253 -0
  57. streamlit_data_editor_plus-0.1.0/streamlit/development.py +21 -0
  58. streamlit_data_editor_plus-0.1.0/streamlit/elements/__init__.py +13 -0
  59. streamlit_data_editor_plus-0.1.0/streamlit/elements/alert.py +341 -0
  60. streamlit_data_editor_plus-0.1.0/streamlit/elements/arrow.py +1065 -0
  61. streamlit_data_editor_plus-0.1.0/streamlit/elements/balloons.py +47 -0
  62. streamlit_data_editor_plus-0.1.0/streamlit/elements/bokeh_chart.py +75 -0
  63. streamlit_data_editor_plus-0.1.0/streamlit/elements/code.py +154 -0
  64. streamlit_data_editor_plus-0.1.0/streamlit/elements/deck_gl_json_chart.py +627 -0
  65. streamlit_data_editor_plus-0.1.0/streamlit/elements/dialog_decorator.py +320 -0
  66. streamlit_data_editor_plus-0.1.0/streamlit/elements/empty.py +130 -0
  67. streamlit_data_editor_plus-0.1.0/streamlit/elements/exception.py +370 -0
  68. streamlit_data_editor_plus-0.1.0/streamlit/elements/form.py +481 -0
  69. streamlit_data_editor_plus-0.1.0/streamlit/elements/graphviz_chart.py +226 -0
  70. streamlit_data_editor_plus-0.1.0/streamlit/elements/heading.py +407 -0
  71. streamlit_data_editor_plus-0.1.0/streamlit/elements/help.py +565 -0
  72. streamlit_data_editor_plus-0.1.0/streamlit/elements/html.py +189 -0
  73. streamlit_data_editor_plus-0.1.0/streamlit/elements/iframe.py +245 -0
  74. streamlit_data_editor_plus-0.1.0/streamlit/elements/image.py +221 -0
  75. streamlit_data_editor_plus-0.1.0/streamlit/elements/json.py +171 -0
  76. streamlit_data_editor_plus-0.1.0/streamlit/elements/layouts.py +1534 -0
  77. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/__init__.py +13 -0
  78. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/built_in_chart_utils.py +1316 -0
  79. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/color_util.py +272 -0
  80. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/column_config_utils.py +555 -0
  81. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/column_types.py +2699 -0
  82. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/dialog.py +212 -0
  83. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/dicttools.py +152 -0
  84. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/file_uploader_utils.py +91 -0
  85. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/form_utils.py +77 -0
  86. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/image_utils.py +447 -0
  87. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/js_number.py +105 -0
  88. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/layout_utils.py +325 -0
  89. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/mutable_expander_container.py +73 -0
  90. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/mutable_popover_container.py +73 -0
  91. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/mutable_status_container.py +194 -0
  92. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/mutable_tab_container.py +73 -0
  93. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/options_selector_utils.py +480 -0
  94. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/pandas_styler_utils.py +302 -0
  95. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/policies.py +198 -0
  96. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/shortcut_utils.py +152 -0
  97. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/streamlit_plotly_theme.py +206 -0
  98. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/subtitle_utils.py +175 -0
  99. streamlit_data_editor_plus-0.1.0/streamlit/elements/lib/utils.py +274 -0
  100. streamlit_data_editor_plus-0.1.0/streamlit/elements/map.py +526 -0
  101. streamlit_data_editor_plus-0.1.0/streamlit/elements/markdown.py +529 -0
  102. streamlit_data_editor_plus-0.1.0/streamlit/elements/media.py +843 -0
  103. streamlit_data_editor_plus-0.1.0/streamlit/elements/metric.py +529 -0
  104. streamlit_data_editor_plus-0.1.0/streamlit/elements/pdf.py +190 -0
  105. streamlit_data_editor_plus-0.1.0/streamlit/elements/plotly_chart.py +779 -0
  106. streamlit_data_editor_plus-0.1.0/streamlit/elements/progress.py +172 -0
  107. streamlit_data_editor_plus-0.1.0/streamlit/elements/pyplot.py +240 -0
  108. streamlit_data_editor_plus-0.1.0/streamlit/elements/snow.py +47 -0
  109. streamlit_data_editor_plus-0.1.0/streamlit/elements/space.py +121 -0
  110. streamlit_data_editor_plus-0.1.0/streamlit/elements/spinner.py +152 -0
  111. streamlit_data_editor_plus-0.1.0/streamlit/elements/table.py +240 -0
  112. streamlit_data_editor_plus-0.1.0/streamlit/elements/text.py +113 -0
  113. streamlit_data_editor_plus-0.1.0/streamlit/elements/toast.py +175 -0
  114. streamlit_data_editor_plus-0.1.0/streamlit/elements/vega_charts.py +2510 -0
  115. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/__init__.py +13 -0
  116. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/audio_input.py +334 -0
  117. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/button.py +1559 -0
  118. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/button_group.py +1061 -0
  119. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/camera_input.py +281 -0
  120. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/chat.py +1028 -0
  121. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/checkbox.py +420 -0
  122. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/color_picker.py +329 -0
  123. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/data_editor.py +1168 -0
  124. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/data_editor_plus.py +902 -0
  125. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/feedback.py +322 -0
  126. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/file_uploader.py +592 -0
  127. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/multiselect.py +654 -0
  128. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/number_input.py +719 -0
  129. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/radio.py +551 -0
  130. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/select_slider.py +568 -0
  131. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/selectbox.py +680 -0
  132. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/slider.py +1093 -0
  133. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/text_widgets.py +779 -0
  134. streamlit_data_editor_plus-0.1.0/streamlit/elements/widgets/time_widgets.py +1712 -0
  135. streamlit_data_editor_plus-0.1.0/streamlit/elements/write.py +585 -0
  136. streamlit_data_editor_plus-0.1.0/streamlit/emojis.py +34 -0
  137. streamlit_data_editor_plus-0.1.0/streamlit/env_util.py +56 -0
  138. streamlit_data_editor_plus-0.1.0/streamlit/error_util.py +112 -0
  139. streamlit_data_editor_plus-0.1.0/streamlit/errors.py +680 -0
  140. streamlit_data_editor_plus-0.1.0/streamlit/external/__init__.py +13 -0
  141. streamlit_data_editor_plus-0.1.0/streamlit/external/langchain/__init__.py +23 -0
  142. streamlit_data_editor_plus-0.1.0/streamlit/external/langchain/streamlit_callback_handler.py +410 -0
  143. streamlit_data_editor_plus-0.1.0/streamlit/file_util.py +266 -0
  144. streamlit_data_editor_plus-0.1.0/streamlit/git_util.py +200 -0
  145. streamlit_data_editor_plus-0.1.0/streamlit/hello/__init__.py +13 -0
  146. streamlit_data_editor_plus-0.1.0/streamlit/hello/__pycache__/__init__.cpython-312.pyc +0 -0
  147. streamlit_data_editor_plus-0.1.0/streamlit/hello/__pycache__/streamlit_app.cpython-312.pyc +0 -0
  148. streamlit_data_editor_plus-0.1.0/streamlit/hello/animation_demo.py +82 -0
  149. streamlit_data_editor_plus-0.1.0/streamlit/hello/dataframe_demo.py +71 -0
  150. streamlit_data_editor_plus-0.1.0/streamlit/hello/hello.py +46 -0
  151. streamlit_data_editor_plus-0.1.0/streamlit/hello/mapping_demo.py +113 -0
  152. streamlit_data_editor_plus-0.1.0/streamlit/hello/plotting_demo.py +62 -0
  153. streamlit_data_editor_plus-0.1.0/streamlit/hello/streamlit_app.py +57 -0
  154. streamlit_data_editor_plus-0.1.0/streamlit/hello/utils.py +30 -0
  155. streamlit_data_editor_plus-0.1.0/streamlit/logger.py +129 -0
  156. streamlit_data_editor_plus-0.1.0/streamlit/material_icon_names.py +25 -0
  157. streamlit_data_editor_plus-0.1.0/streamlit/navigation/__init__.py +13 -0
  158. streamlit_data_editor_plus-0.1.0/streamlit/navigation/page.py +365 -0
  159. streamlit_data_editor_plus-0.1.0/streamlit/net_util.py +125 -0
  160. streamlit_data_editor_plus-0.1.0/streamlit/path_security.py +98 -0
  161. streamlit_data_editor_plus-0.1.0/streamlit/platform.py +31 -0
  162. streamlit_data_editor_plus-0.1.0/streamlit/proto/Alert_pb2.py +28 -0
  163. streamlit_data_editor_plus-0.1.0/streamlit/proto/Alert_pb2.pyi +100 -0
  164. streamlit_data_editor_plus-0.1.0/streamlit/proto/AppPage_pb2.py +25 -0
  165. streamlit_data_editor_plus-0.1.0/streamlit/proto/AppPage_pb2.pyi +75 -0
  166. streamlit_data_editor_plus-0.1.0/streamlit/proto/ArrowData_pb2.py +27 -0
  167. streamlit_data_editor_plus-0.1.0/streamlit/proto/ArrowData_pb2.pyi +103 -0
  168. streamlit_data_editor_plus-0.1.0/streamlit/proto/ArrowNamedDataSet_pb2.py +26 -0
  169. streamlit_data_editor_plus-0.1.0/streamlit/proto/ArrowNamedDataSet_pb2.pyi +65 -0
  170. streamlit_data_editor_plus-0.1.0/streamlit/proto/AudioInput_pb2.py +26 -0
  171. streamlit_data_editor_plus-0.1.0/streamlit/proto/AudioInput_pb2.pyi +72 -0
  172. streamlit_data_editor_plus-0.1.0/streamlit/proto/Audio_pb2.py +26 -0
  173. streamlit_data_editor_plus-0.1.0/streamlit/proto/Audio_pb2.pyi +75 -0
  174. streamlit_data_editor_plus-0.1.0/streamlit/proto/AuthRedirect_pb2.py +25 -0
  175. streamlit_data_editor_plus-0.1.0/streamlit/proto/AuthRedirect_pb2.pyi +48 -0
  176. streamlit_data_editor_plus-0.1.0/streamlit/proto/AutoRerun_pb2.py +25 -0
  177. streamlit_data_editor_plus-0.1.0/streamlit/proto/AutoRerun_pb2.pyi +52 -0
  178. streamlit_data_editor_plus-0.1.0/streamlit/proto/BackMsg_pb2.py +29 -0
  179. streamlit_data_editor_plus-0.1.0/streamlit/proto/BackMsg_pb2.pyi +132 -0
  180. streamlit_data_editor_plus-0.1.0/streamlit/proto/Balloons_pb2.py +25 -0
  181. streamlit_data_editor_plus-0.1.0/streamlit/proto/Balloons_pb2.pyi +48 -0
  182. streamlit_data_editor_plus-0.1.0/streamlit/proto/BidiComponent_pb2.py +32 -0
  183. streamlit_data_editor_plus-0.1.0/streamlit/proto/BidiComponent_pb2.pyi +176 -0
  184. streamlit_data_editor_plus-0.1.0/streamlit/proto/Block_pb2.py +62 -0
  185. streamlit_data_editor_plus-0.1.0/streamlit/proto/Block_pb2.pyi +518 -0
  186. streamlit_data_editor_plus-0.1.0/streamlit/proto/ButtonGroup_pb2.py +32 -0
  187. streamlit_data_editor_plus-0.1.0/streamlit/proto/ButtonGroup_pb2.pyi +157 -0
  188. streamlit_data_editor_plus-0.1.0/streamlit/proto/ButtonLikeIconPosition_pb2.py +25 -0
  189. streamlit_data_editor_plus-0.1.0/streamlit/proto/ButtonLikeIconPosition_pb2.pyi +47 -0
  190. streamlit_data_editor_plus-0.1.0/streamlit/proto/Button_pb2.py +26 -0
  191. streamlit_data_editor_plus-0.1.0/streamlit/proto/Button_pb2.pyi +82 -0
  192. streamlit_data_editor_plus-0.1.0/streamlit/proto/CameraInput_pb2.py +26 -0
  193. streamlit_data_editor_plus-0.1.0/streamlit/proto/CameraInput_pb2.pyi +66 -0
  194. streamlit_data_editor_plus-0.1.0/streamlit/proto/ChatInput_pb2.py +27 -0
  195. streamlit_data_editor_plus-0.1.0/streamlit/proto/ChatInput_pb2.pyi +113 -0
  196. streamlit_data_editor_plus-0.1.0/streamlit/proto/Checkbox_pb2.py +28 -0
  197. streamlit_data_editor_plus-0.1.0/streamlit/proto/Checkbox_pb2.pyi +99 -0
  198. streamlit_data_editor_plus-0.1.0/streamlit/proto/ClientState_pb2.py +28 -0
  199. streamlit_data_editor_plus-0.1.0/streamlit/proto/ClientState_pb2.pyi +137 -0
  200. streamlit_data_editor_plus-0.1.0/streamlit/proto/Code_pb2.py +25 -0
  201. streamlit_data_editor_plus-0.1.0/streamlit/proto/Code_pb2.pyi +59 -0
  202. streamlit_data_editor_plus-0.1.0/streamlit/proto/ColorPicker_pb2.py +26 -0
  203. streamlit_data_editor_plus-0.1.0/streamlit/proto/ColorPicker_pb2.pyi +82 -0
  204. streamlit_data_editor_plus-0.1.0/streamlit/proto/Common_pb2.py +49 -0
  205. streamlit_data_editor_plus-0.1.0/streamlit/proto/Common_pb2.pyi +325 -0
  206. streamlit_data_editor_plus-0.1.0/streamlit/proto/Components_pb2.py +33 -0
  207. streamlit_data_editor_plus-0.1.0/streamlit/proto/Components_pb2.pyi +196 -0
  208. streamlit_data_editor_plus-0.1.0/streamlit/proto/Dataframe_pb2.py +30 -0
  209. streamlit_data_editor_plus-0.1.0/streamlit/proto/Dataframe_pb2.pyi +172 -0
  210. streamlit_data_editor_plus-0.1.0/streamlit/proto/DateInput_pb2.py +26 -0
  211. streamlit_data_editor_plus-0.1.0/streamlit/proto/DateInput_pb2.pyi +91 -0
  212. streamlit_data_editor_plus-0.1.0/streamlit/proto/DateTimeInput_pb2.py +26 -0
  213. streamlit_data_editor_plus-0.1.0/streamlit/proto/DateTimeInput_pb2.pyi +94 -0
  214. streamlit_data_editor_plus-0.1.0/streamlit/proto/DeckGlJsonChart_pb2.py +27 -0
  215. streamlit_data_editor_plus-0.1.0/streamlit/proto/DeckGlJsonChart_pb2.pyi +91 -0
  216. streamlit_data_editor_plus-0.1.0/streamlit/proto/Delta_pb2.py +29 -0
  217. streamlit_data_editor_plus-0.1.0/streamlit/proto/Delta_pb2.pyi +82 -0
  218. streamlit_data_editor_plus-0.1.0/streamlit/proto/DownloadButton_pb2.py +26 -0
  219. streamlit_data_editor_plus-0.1.0/streamlit/proto/DownloadButton_pb2.pyi +92 -0
  220. streamlit_data_editor_plus-0.1.0/streamlit/proto/Element_pb2.py +81 -0
  221. streamlit_data_editor_plus-0.1.0/streamlit/proto/Element_pb2.pyi +348 -0
  222. streamlit_data_editor_plus-0.1.0/streamlit/proto/Empty_pb2.py +25 -0
  223. streamlit_data_editor_plus-0.1.0/streamlit/proto/Empty_pb2.pyi +42 -0
  224. streamlit_data_editor_plus-0.1.0/streamlit/proto/Exception_pb2.py +26 -0
  225. streamlit_data_editor_plus-0.1.0/streamlit/proto/Exception_pb2.pyi +88 -0
  226. streamlit_data_editor_plus-0.1.0/streamlit/proto/Favicon_pb2.py +25 -0
  227. streamlit_data_editor_plus-0.1.0/streamlit/proto/Favicon_pb2.pyi +47 -0
  228. streamlit_data_editor_plus-0.1.0/streamlit/proto/Feedback_pb2.py +27 -0
  229. streamlit_data_editor_plus-0.1.0/streamlit/proto/Feedback_pb2.pyi +93 -0
  230. streamlit_data_editor_plus-0.1.0/streamlit/proto/FileUploader_pb2.py +26 -0
  231. streamlit_data_editor_plus-0.1.0/streamlit/proto/FileUploader_pb2.pyi +90 -0
  232. streamlit_data_editor_plus-0.1.0/streamlit/proto/ForwardMsg_pb2.py +48 -0
  233. streamlit_data_editor_plus-0.1.0/streamlit/proto/ForwardMsg_pb2.pyi +296 -0
  234. streamlit_data_editor_plus-0.1.0/streamlit/proto/GapSize_pb2.py +27 -0
  235. streamlit_data_editor_plus-0.1.0/streamlit/proto/GapSize_pb2.pyi +82 -0
  236. streamlit_data_editor_plus-0.1.0/streamlit/proto/GitInfo_pb2.py +27 -0
  237. streamlit_data_editor_plus-0.1.0/streamlit/proto/GitInfo_pb2.pyi +84 -0
  238. streamlit_data_editor_plus-0.1.0/streamlit/proto/GraphVizChart_pb2.py +25 -0
  239. streamlit_data_editor_plus-0.1.0/streamlit/proto/GraphVizChart_pb2.pyi +56 -0
  240. streamlit_data_editor_plus-0.1.0/streamlit/proto/Heading_pb2.py +25 -0
  241. streamlit_data_editor_plus-0.1.0/streamlit/proto/Heading_pb2.pyi +63 -0
  242. streamlit_data_editor_plus-0.1.0/streamlit/proto/HeightConfig_pb2.py +25 -0
  243. streamlit_data_editor_plus-0.1.0/streamlit/proto/HeightConfig_pb2.pyi +61 -0
  244. streamlit_data_editor_plus-0.1.0/streamlit/proto/Help_pb2.py +27 -0
  245. streamlit_data_editor_plus-0.1.0/streamlit/proto/Help_pb2.pyi +104 -0
  246. streamlit_data_editor_plus-0.1.0/streamlit/proto/Html_pb2.py +25 -0
  247. streamlit_data_editor_plus-0.1.0/streamlit/proto/Html_pb2.pyi +52 -0
  248. streamlit_data_editor_plus-0.1.0/streamlit/proto/IFrame_pb2.py +25 -0
  249. streamlit_data_editor_plus-0.1.0/streamlit/proto/IFrame_pb2.pyi +68 -0
  250. streamlit_data_editor_plus-0.1.0/streamlit/proto/Image_pb2.py +27 -0
  251. streamlit_data_editor_plus-0.1.0/streamlit/proto/Image_pb2.pyi +73 -0
  252. streamlit_data_editor_plus-0.1.0/streamlit/proto/Json_pb2.py +25 -0
  253. streamlit_data_editor_plus-0.1.0/streamlit/proto/Json_pb2.pyi +63 -0
  254. streamlit_data_editor_plus-0.1.0/streamlit/proto/LabelVisibility_pb2.py +27 -0
  255. streamlit_data_editor_plus-0.1.0/streamlit/proto/LabelVisibility_pb2.pyi +69 -0
  256. streamlit_data_editor_plus-0.1.0/streamlit/proto/LinkButton_pb2.py +26 -0
  257. streamlit_data_editor_plus-0.1.0/streamlit/proto/LinkButton_pb2.pyi +76 -0
  258. streamlit_data_editor_plus-0.1.0/streamlit/proto/Logo_pb2.py +27 -0
  259. streamlit_data_editor_plus-0.1.0/streamlit/proto/Logo_pb2.pyi +82 -0
  260. streamlit_data_editor_plus-0.1.0/streamlit/proto/Markdown_pb2.py +27 -0
  261. streamlit_data_editor_plus-0.1.0/streamlit/proto/Markdown_pb2.pyi +83 -0
  262. streamlit_data_editor_plus-0.1.0/streamlit/proto/Metric_pb2.py +32 -0
  263. streamlit_data_editor_plus-0.1.0/streamlit/proto/Metric_pb2.pyi +145 -0
  264. streamlit_data_editor_plus-0.1.0/streamlit/proto/MetricsEvent_pb2.py +28 -0
  265. streamlit_data_editor_plus-0.1.0/streamlit/proto/MetricsEvent_pb2.pyi +224 -0
  266. streamlit_data_editor_plus-0.1.0/streamlit/proto/MultiSelect_pb2.py +26 -0
  267. streamlit_data_editor_plus-0.1.0/streamlit/proto/MultiSelect_pb2.pyi +108 -0
  268. streamlit_data_editor_plus-0.1.0/streamlit/proto/Navigation_pb2.py +28 -0
  269. streamlit_data_editor_plus-0.1.0/streamlit/proto/Navigation_pb2.pyi +89 -0
  270. streamlit_data_editor_plus-0.1.0/streamlit/proto/NewSession_pb2.py +47 -0
  271. streamlit_data_editor_plus-0.1.0/streamlit/proto/NewSession_pb2.pyi +753 -0
  272. streamlit_data_editor_plus-0.1.0/streamlit/proto/NumberInput_pb2.py +28 -0
  273. streamlit_data_editor_plus-0.1.0/streamlit/proto/NumberInput_pb2.pyi +138 -0
  274. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageConfig_pb2.py +33 -0
  275. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageConfig_pb2.pyi +179 -0
  276. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageInfo_pb2.py +25 -0
  277. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageInfo_pb2.pyi +50 -0
  278. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageLink_pb2.py +26 -0
  279. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageLink_pb2.pyi +80 -0
  280. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageNotFound_pb2.py +25 -0
  281. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageNotFound_pb2.pyi +49 -0
  282. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageProfile_pb2.py +29 -0
  283. streamlit_data_editor_plus-0.1.0/streamlit/proto/PageProfile_pb2.pyi +146 -0
  284. streamlit_data_editor_plus-0.1.0/streamlit/proto/ParentMessage_pb2.py +25 -0
  285. streamlit_data_editor_plus-0.1.0/streamlit/proto/ParentMessage_pb2.pyi +53 -0
  286. streamlit_data_editor_plus-0.1.0/streamlit/proto/PlotlyChart_pb2.py +27 -0
  287. streamlit_data_editor_plus-0.1.0/streamlit/proto/PlotlyChart_pb2.pyi +96 -0
  288. streamlit_data_editor_plus-0.1.0/streamlit/proto/Progress_pb2.py +25 -0
  289. streamlit_data_editor_plus-0.1.0/streamlit/proto/Progress_pb2.pyi +50 -0
  290. streamlit_data_editor_plus-0.1.0/streamlit/proto/Radio_pb2.py +26 -0
  291. streamlit_data_editor_plus-0.1.0/streamlit/proto/Radio_pb2.pyi +104 -0
  292. streamlit_data_editor_plus-0.1.0/streamlit/proto/RootContainer_pb2.py +25 -0
  293. streamlit_data_editor_plus-0.1.0/streamlit/proto/RootContainer_pb2.pyi +56 -0
  294. streamlit_data_editor_plus-0.1.0/streamlit/proto/Selectbox_pb2.py +26 -0
  295. streamlit_data_editor_plus-0.1.0/streamlit/proto/Selectbox_pb2.pyi +107 -0
  296. streamlit_data_editor_plus-0.1.0/streamlit/proto/SessionEvent_pb2.py +26 -0
  297. streamlit_data_editor_plus-0.1.0/streamlit/proto/SessionEvent_pb2.pyi +72 -0
  298. streamlit_data_editor_plus-0.1.0/streamlit/proto/SessionStatus_pb2.py +25 -0
  299. streamlit_data_editor_plus-0.1.0/streamlit/proto/SessionStatus_pb2.pyi +64 -0
  300. streamlit_data_editor_plus-0.1.0/streamlit/proto/Skeleton_pb2.py +27 -0
  301. streamlit_data_editor_plus-0.1.0/streamlit/proto/Skeleton_pb2.pyi +75 -0
  302. streamlit_data_editor_plus-0.1.0/streamlit/proto/Slider_pb2.py +30 -0
  303. streamlit_data_editor_plus-0.1.0/streamlit/proto/Slider_pb2.pyi +161 -0
  304. streamlit_data_editor_plus-0.1.0/streamlit/proto/Snow_pb2.py +25 -0
  305. streamlit_data_editor_plus-0.1.0/streamlit/proto/Snow_pb2.pyi +48 -0
  306. streamlit_data_editor_plus-0.1.0/streamlit/proto/Space_pb2.py +25 -0
  307. streamlit_data_editor_plus-0.1.0/streamlit/proto/Space_pb2.pyi +48 -0
  308. streamlit_data_editor_plus-0.1.0/streamlit/proto/Spinner_pb2.py +25 -0
  309. streamlit_data_editor_plus-0.1.0/streamlit/proto/Spinner_pb2.pyi +56 -0
  310. streamlit_data_editor_plus-0.1.0/streamlit/proto/Table_pb2.py +28 -0
  311. streamlit_data_editor_plus-0.1.0/streamlit/proto/Table_pb2.pyi +83 -0
  312. streamlit_data_editor_plus-0.1.0/streamlit/proto/TextAlignmentConfig_pb2.py +27 -0
  313. streamlit_data_editor_plus-0.1.0/streamlit/proto/TextAlignmentConfig_pb2.pyi +69 -0
  314. streamlit_data_editor_plus-0.1.0/streamlit/proto/TextArea_pb2.py +26 -0
  315. streamlit_data_editor_plus-0.1.0/streamlit/proto/TextArea_pb2.pyi +97 -0
  316. streamlit_data_editor_plus-0.1.0/streamlit/proto/TextInput_pb2.py +28 -0
  317. streamlit_data_editor_plus-0.1.0/streamlit/proto/TextInput_pb2.pyi +124 -0
  318. streamlit_data_editor_plus-0.1.0/streamlit/proto/Text_pb2.py +25 -0
  319. streamlit_data_editor_plus-0.1.0/streamlit/proto/Text_pb2.pyi +53 -0
  320. streamlit_data_editor_plus-0.1.0/streamlit/proto/TimeInput_pb2.py +26 -0
  321. streamlit_data_editor_plus-0.1.0/streamlit/proto/TimeInput_pb2.pyi +86 -0
  322. streamlit_data_editor_plus-0.1.0/streamlit/proto/Toast_pb2.py +25 -0
  323. streamlit_data_editor_plus-0.1.0/streamlit/proto/Toast_pb2.pyi +64 -0
  324. streamlit_data_editor_plus-0.1.0/streamlit/proto/Transient_pb2.py +26 -0
  325. streamlit_data_editor_plus-0.1.0/streamlit/proto/Transient_pb2.pyi +53 -0
  326. streamlit_data_editor_plus-0.1.0/streamlit/proto/VegaLiteChart_pb2.py +27 -0
  327. streamlit_data_editor_plus-0.1.0/streamlit/proto/VegaLiteChart_pb2.pyi +92 -0
  328. streamlit_data_editor_plus-0.1.0/streamlit/proto/Video_pb2.py +30 -0
  329. streamlit_data_editor_plus-0.1.0/streamlit/proto/Video_pb2.pyi +129 -0
  330. streamlit_data_editor_plus-0.1.0/streamlit/proto/WidgetStates_pb2.py +31 -0
  331. streamlit_data_editor_plus-0.1.0/streamlit/proto/WidgetStates_pb2.pyi +157 -0
  332. streamlit_data_editor_plus-0.1.0/streamlit/proto/WidthConfig_pb2.py +25 -0
  333. streamlit_data_editor_plus-0.1.0/streamlit/proto/WidthConfig_pb2.pyi +61 -0
  334. streamlit_data_editor_plus-0.1.0/streamlit/proto/__init__.py +15 -0
  335. streamlit_data_editor_plus-0.1.0/streamlit/proto/openmetrics_data_model_pb2.py +58 -0
  336. streamlit_data_editor_plus-0.1.0/streamlit/proto/openmetrics_data_model_pb2.pyi +558 -0
  337. streamlit_data_editor_plus-0.1.0/streamlit/py.typed +0 -0
  338. streamlit_data_editor_plus-0.1.0/streamlit/runtime/__init__.py +50 -0
  339. streamlit_data_editor_plus-0.1.0/streamlit/runtime/app_session.py +1302 -0
  340. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/__init__.py +118 -0
  341. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/cache_data_api.py +775 -0
  342. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/cache_errors.py +143 -0
  343. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/cache_resource_api.py +756 -0
  344. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/cache_type.py +33 -0
  345. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/cache_utils.py +601 -0
  346. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/cached_message_replay.py +290 -0
  347. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/hashing.py +655 -0
  348. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/legacy_cache_api.py +170 -0
  349. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/storage/__init__.py +29 -0
  350. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/storage/cache_storage_protocol.py +236 -0
  351. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/storage/dummy_cache_storage.py +60 -0
  352. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +159 -0
  353. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/storage/local_disk_cache_storage.py +223 -0
  354. streamlit_data_editor_plus-0.1.0/streamlit/runtime/caching/ttl_cleanup_cache.py +85 -0
  355. streamlit_data_editor_plus-0.1.0/streamlit/runtime/connection_factory.py +498 -0
  356. streamlit_data_editor_plus-0.1.0/streamlit/runtime/context.py +449 -0
  357. streamlit_data_editor_plus-0.1.0/streamlit/runtime/context_util.py +49 -0
  358. streamlit_data_editor_plus-0.1.0/streamlit/runtime/credentials.py +355 -0
  359. streamlit_data_editor_plus-0.1.0/streamlit/runtime/download_data_util.py +53 -0
  360. streamlit_data_editor_plus-0.1.0/streamlit/runtime/forward_msg_cache.py +101 -0
  361. streamlit_data_editor_plus-0.1.0/streamlit/runtime/forward_msg_queue.py +263 -0
  362. streamlit_data_editor_plus-0.1.0/streamlit/runtime/fragment.py +441 -0
  363. streamlit_data_editor_plus-0.1.0/streamlit/runtime/media_file_manager.py +409 -0
  364. streamlit_data_editor_plus-0.1.0/streamlit/runtime/media_file_storage.py +143 -0
  365. streamlit_data_editor_plus-0.1.0/streamlit/runtime/memory_media_file_storage.py +201 -0
  366. streamlit_data_editor_plus-0.1.0/streamlit/runtime/memory_session_storage.py +77 -0
  367. streamlit_data_editor_plus-0.1.0/streamlit/runtime/memory_uploaded_file_manager.py +149 -0
  368. streamlit_data_editor_plus-0.1.0/streamlit/runtime/metrics_util.py +612 -0
  369. streamlit_data_editor_plus-0.1.0/streamlit/runtime/pages_manager.py +160 -0
  370. streamlit_data_editor_plus-0.1.0/streamlit/runtime/runtime.py +775 -0
  371. streamlit_data_editor_plus-0.1.0/streamlit/runtime/runtime_util.py +108 -0
  372. streamlit_data_editor_plus-0.1.0/streamlit/runtime/script_data.py +46 -0
  373. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner/__init__.py +38 -0
  374. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner/exec_code.py +167 -0
  375. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner/magic.py +277 -0
  376. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner/magic_funcs.py +32 -0
  377. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner/script_cache.py +89 -0
  378. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner/script_runner.py +805 -0
  379. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner_utils/__init__.py +19 -0
  380. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner_utils/exceptions.py +44 -0
  381. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner_utils/script_requests.py +311 -0
  382. streamlit_data_editor_plus-0.1.0/streamlit/runtime/scriptrunner_utils/script_run_context.py +277 -0
  383. streamlit_data_editor_plus-0.1.0/streamlit/runtime/secrets.py +533 -0
  384. streamlit_data_editor_plus-0.1.0/streamlit/runtime/session_manager.py +430 -0
  385. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/__init__.py +47 -0
  386. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/common.py +256 -0
  387. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/presentation.py +85 -0
  388. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/query_params.py +767 -0
  389. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/query_params_proxy.py +222 -0
  390. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/safe_session_state.py +146 -0
  391. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/session_state.py +1299 -0
  392. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/session_state_proxy.py +153 -0
  393. streamlit_data_editor_plus-0.1.0/streamlit/runtime/state/widgets.py +197 -0
  394. streamlit_data_editor_plus-0.1.0/streamlit/runtime/stats.py +356 -0
  395. streamlit_data_editor_plus-0.1.0/streamlit/runtime/theme_util.py +148 -0
  396. streamlit_data_editor_plus-0.1.0/streamlit/runtime/uploaded_file_manager.py +152 -0
  397. streamlit_data_editor_plus-0.1.0/streamlit/runtime/websocket_session_manager.py +301 -0
  398. streamlit_data_editor_plus-0.1.0/streamlit/source_util.py +97 -0
  399. streamlit_data_editor_plus-0.1.0/streamlit/starlette.py +34 -0
  400. streamlit_data_editor_plus-0.1.0/streamlit/string_util.py +264 -0
  401. streamlit_data_editor_plus-0.1.0/streamlit/temporary_directory.py +67 -0
  402. streamlit_data_editor_plus-0.1.0/streamlit/testing/__init__.py +13 -0
  403. streamlit_data_editor_plus-0.1.0/streamlit/testing/v1/__init__.py +17 -0
  404. streamlit_data_editor_plus-0.1.0/streamlit/testing/v1/app_test.py +1089 -0
  405. streamlit_data_editor_plus-0.1.0/streamlit/testing/v1/element_tree.py +2272 -0
  406. streamlit_data_editor_plus-0.1.0/streamlit/testing/v1/local_script_runner.py +176 -0
  407. streamlit_data_editor_plus-0.1.0/streamlit/testing/v1/util.py +61 -0
  408. streamlit_data_editor_plus-0.1.0/streamlit/time_util.py +73 -0
  409. streamlit_data_editor_plus-0.1.0/streamlit/type_util.py +480 -0
  410. streamlit_data_editor_plus-0.1.0/streamlit/url_util.py +120 -0
  411. streamlit_data_editor_plus-0.1.0/streamlit/user_info.py +698 -0
  412. streamlit_data_editor_plus-0.1.0/streamlit/util.py +108 -0
  413. streamlit_data_editor_plus-0.1.0/streamlit/vendor/__init__.py +0 -0
  414. streamlit_data_editor_plus-0.1.0/streamlit/vendor/pympler/__init__.py +0 -0
  415. streamlit_data_editor_plus-0.1.0/streamlit/vendor/pympler/asizeof.py +2870 -0
  416. streamlit_data_editor_plus-0.1.0/streamlit/version.py +18 -0
  417. streamlit_data_editor_plus-0.1.0/streamlit/watcher/__init__.py +28 -0
  418. streamlit_data_editor_plus-0.1.0/streamlit/watcher/event_based_path_watcher.py +500 -0
  419. streamlit_data_editor_plus-0.1.0/streamlit/watcher/folder_black_list.py +82 -0
  420. streamlit_data_editor_plus-0.1.0/streamlit/watcher/local_sources_watcher.py +297 -0
  421. streamlit_data_editor_plus-0.1.0/streamlit/watcher/path_watcher.py +244 -0
  422. streamlit_data_editor_plus-0.1.0/streamlit/watcher/polling_path_watcher.py +138 -0
  423. streamlit_data_editor_plus-0.1.0/streamlit/watcher/util.py +223 -0
  424. streamlit_data_editor_plus-0.1.0/streamlit/web/__init__.py +13 -0
  425. streamlit_data_editor_plus-0.1.0/streamlit/web/bootstrap.py +463 -0
  426. streamlit_data_editor_plus-0.1.0/streamlit/web/cache_storage_manager_config.py +38 -0
  427. streamlit_data_editor_plus-0.1.0/streamlit/web/cli.py +465 -0
  428. streamlit_data_editor_plus-0.1.0/streamlit/web/server/__init__.py +30 -0
  429. streamlit_data_editor_plus-0.1.0/streamlit/web/server/app_discovery.py +422 -0
  430. streamlit_data_editor_plus-0.1.0/streamlit/web/server/app_static_file_handler.py +102 -0
  431. streamlit_data_editor_plus-0.1.0/streamlit/web/server/authlib_tornado_integration.py +125 -0
  432. streamlit_data_editor_plus-0.1.0/streamlit/web/server/bidi_component_request_handler.py +193 -0
  433. streamlit_data_editor_plus-0.1.0/streamlit/web/server/browser_websocket_handler.py +341 -0
  434. streamlit_data_editor_plus-0.1.0/streamlit/web/server/component_file_utils.py +105 -0
  435. streamlit_data_editor_plus-0.1.0/streamlit/web/server/component_request_handler.py +107 -0
  436. streamlit_data_editor_plus-0.1.0/streamlit/web/server/media_file_handler.py +148 -0
  437. streamlit_data_editor_plus-0.1.0/streamlit/web/server/oauth_authlib_routes.py +314 -0
  438. streamlit_data_editor_plus-0.1.0/streamlit/web/server/oidc_mixin.py +138 -0
  439. streamlit_data_editor_plus-0.1.0/streamlit/web/server/routes.py +257 -0
  440. streamlit_data_editor_plus-0.1.0/streamlit/web/server/server.py +555 -0
  441. streamlit_data_editor_plus-0.1.0/streamlit/web/server/server_util.py +235 -0
  442. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/__init__.py +23 -0
  443. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_app.py +541 -0
  444. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_app_utils.py +306 -0
  445. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_auth_routes.py +584 -0
  446. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_gzip_middleware.py +121 -0
  447. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_path_security_middleware.py +97 -0
  448. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_routes.py +884 -0
  449. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_server.py +496 -0
  450. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_server_config.py +55 -0
  451. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_static_routes.py +181 -0
  452. streamlit_data_editor_plus-0.1.0/streamlit/web/server/starlette/starlette_websocket.py +560 -0
  453. streamlit_data_editor_plus-0.1.0/streamlit/web/server/stats_request_handler.py +116 -0
  454. streamlit_data_editor_plus-0.1.0/streamlit/web/server/upload_file_request_handler.py +158 -0
  455. streamlit_data_editor_plus-0.1.0/streamlit/web/server/websocket_headers.py +56 -0
  456. streamlit_data_editor_plus-0.1.0/streamlit_data_editor_plus.egg-info/PKG-INFO +76 -0
  457. streamlit_data_editor_plus-0.1.0/streamlit_data_editor_plus.egg-info/SOURCES.txt +461 -0
  458. streamlit_data_editor_plus-0.1.0/streamlit_data_editor_plus.egg-info/dependency_links.txt +1 -0
  459. streamlit_data_editor_plus-0.1.0/streamlit_data_editor_plus.egg-info/entry_points.txt +2 -0
  460. streamlit_data_editor_plus-0.1.0/streamlit_data_editor_plus.egg-info/not-zip-safe +1 -0
  461. streamlit_data_editor_plus-0.1.0/streamlit_data_editor_plus.egg-info/requires.txt +60 -0
  462. streamlit_data_editor_plus-0.1.0/streamlit_data_editor_plus.egg-info/top_level.txt +2 -0
  463. streamlit_data_editor_plus-0.1.0/tests/testutil.py +120 -0
@@ -0,0 +1,3 @@
1
+ include streamlit/py.typed
2
+ recursive-include streamlit/hello *
3
+ recursive-include streamlit/static *
@@ -0,0 +1,76 @@
1
+ Metadata-Version: 2.4
2
+ Name: streamlit-data-editor-plus
3
+ Version: 0.1.0
4
+ Summary: Streamlit with built-in data_editor context menu
5
+ Author-email: Snowflake Inc <hello@streamlit.io>
6
+ License-Expression: Apache-2.0
7
+ Project-URL: Homepage, https://streamlit.io
8
+ Project-URL: Documentation, https://docs.streamlit.io/
9
+ Project-URL: Source Code, https://github.com/streamlit/streamlit
10
+ Project-URL: Bug Tracker, https://github.com/streamlit/streamlit/issues
11
+ Project-URL: Release Notes, https://docs.streamlit.io/develop/quick-reference/changelog
12
+ Project-URL: Community, https://discuss.streamlit.io/
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Environment :: Console
15
+ Classifier: Environment :: Web Environment
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Intended Audience :: Science/Research
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
23
+ Classifier: Topic :: Database :: Front-Ends
24
+ Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
25
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
26
+ Classifier: Topic :: Scientific/Engineering :: Visualization
27
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
28
+ Classifier: Topic :: Software Development :: Widget Sets
29
+ Requires-Python: >=3.10
30
+ Description-Content-Type: text/markdown
31
+ Requires-Dist: altair!=5.4.0,!=5.4.1,<7,>=4.0
32
+ Requires-Dist: blinker<2,>=1.5.0
33
+ Requires-Dist: cachetools<8,>=5.5
34
+ Requires-Dist: click<9,>=7.0
35
+ Requires-Dist: gitpython!=3.1.19,<4,>=3.0.7
36
+ Requires-Dist: numpy<3,>=1.23
37
+ Requires-Dist: packaging>=20
38
+ Requires-Dist: pandas<3,>=1.4.0
39
+ Requires-Dist: pillow<13,>=7.1.0
40
+ Requires-Dist: pydeck<1,>=0.8.0b4
41
+ Requires-Dist: protobuf<7,>=3.20
42
+ Requires-Dist: pyarrow>=7.0
43
+ Requires-Dist: requests<3,>=2.27
44
+ Requires-Dist: tenacity<10,>=8.1.0
45
+ Requires-Dist: toml<2,>=0.10.1
46
+ Requires-Dist: tornado!=6.5.0,<7,>=6.0.3
47
+ Requires-Dist: typing-extensions<5,>=4.10.0
48
+ Requires-Dist: watchdog<7,>=2.1.5; platform_system != "Darwin"
49
+ Provides-Extra: snowflake
50
+ Requires-Dist: snowflake-snowpark-python[modin]>=1.17.0; python_version < "3.12" and extra == "snowflake"
51
+ Requires-Dist: snowflake-connector-python>=3.3.0; python_version < "3.12" and extra == "snowflake"
52
+ Provides-Extra: starlette
53
+ Requires-Dist: starlette>=0.40.0; extra == "starlette"
54
+ Requires-Dist: uvicorn>=0.30.0; extra == "starlette"
55
+ Requires-Dist: anyio>=4.0.0; extra == "starlette"
56
+ Requires-Dist: python-multipart>=0.0.10; extra == "starlette"
57
+ Requires-Dist: websockets>=12.0.0; extra == "starlette"
58
+ Requires-Dist: itsdangerous>=2.1.2; extra == "starlette"
59
+ Provides-Extra: pdf
60
+ Requires-Dist: streamlit-pdf>=1.0.0; extra == "pdf"
61
+ Provides-Extra: auth
62
+ Requires-Dist: Authlib>=1.3.2; extra == "auth"
63
+ Provides-Extra: charts
64
+ Requires-Dist: matplotlib>=3.0.0; extra == "charts"
65
+ Requires-Dist: graphviz>=0.19.0; extra == "charts"
66
+ Requires-Dist: plotly>=4.0.0; extra == "charts"
67
+ Requires-Dist: orjson>=3.5.0; extra == "charts"
68
+ Provides-Extra: sql
69
+ Requires-Dist: SQLAlchemy>=2.0.0; extra == "sql"
70
+ Provides-Extra: performance
71
+ Requires-Dist: orjson>=3.5.0; extra == "performance"
72
+ Requires-Dist: uvloop>=0.15.2; (sys_platform != "win32" and sys_platform != "cygwin" and platform_python_implementation != "PyPy") and extra == "performance"
73
+ Requires-Dist: httptools>=0.6.3; extra == "performance"
74
+ Provides-Extra: all
75
+ Requires-Dist: streamlit[auth,charts,pdf,performance,snowflake,sql]; extra == "all"
76
+ Requires-Dist: rich>=11.0.0; extra == "all"
@@ -0,0 +1,230 @@
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ [build-system]
16
+ requires = ["setuptools>=65.5.1", "wheel"]
17
+ build-backend = "setuptools.build_meta"
18
+
19
+ [project]
20
+ name = "streamlit-data-editor-plus"
21
+ version = "0.1.0"
22
+ description = "Streamlit with built-in data_editor context menu"
23
+ # Note: README.md is in the repo root. The build process copies it to lib/
24
+ # before building. See .github/workflows/release.yml.
25
+ readme = "README.md"
26
+ license = "Apache-2.0"
27
+ requires-python = ">=3.10"
28
+ authors = [{ name = "Snowflake Inc", email = "hello@streamlit.io" }]
29
+ classifiers = [
30
+ "Development Status :: 5 - Production/Stable",
31
+ "Environment :: Console",
32
+ "Environment :: Web Environment",
33
+ "Intended Audience :: Developers",
34
+ "Intended Audience :: Science/Research",
35
+ "Programming Language :: Python :: 3.10",
36
+ "Programming Language :: Python :: 3.11",
37
+ "Programming Language :: Python :: 3.12",
38
+ "Programming Language :: Python :: 3.13",
39
+ "Programming Language :: Python :: 3.14",
40
+ "Topic :: Database :: Front-Ends",
41
+ "Topic :: Office/Business :: Financial :: Spreadsheet",
42
+ "Topic :: Scientific/Engineering :: Information Analysis",
43
+ "Topic :: Scientific/Engineering :: Visualization",
44
+ "Topic :: Software Development :: Libraries :: Application Frameworks",
45
+ "Topic :: Software Development :: Widget Sets",
46
+ ]
47
+
48
+ # IMPORTANT: We should try very hard *not* to add dependencies to Streamlit.
49
+ # And if you do add one, make the required version as general as possible:
50
+ # - Include relevant lower bound for any features we use from our dependencies
51
+ # - Always include the lower bound as >= VERSION, to keep testing min versions easy
52
+ # - And include an upper bound that's < NEXT_MAJOR_VERSION
53
+ # NOTE: If you change the lower bound of a version, you will need to run
54
+ # `make update-min-deps` and commit the changes to `min-constraints-gen.txt`.
55
+ dependencies = [
56
+ # Altair 5.4.0 and 5.4.1 have compatibility issues with narwhals library
57
+ # that cause st.line_chart and other built-in charts to fail rendering.
58
+ # See: https://github.com/streamlit/streamlit/issues/12064
59
+ "altair>=4.0,<7,!=5.4.0,!=5.4.1",
60
+ "blinker>=1.5.0,<2",
61
+ "cachetools>=5.5,<8",
62
+ "click>=7.0,<9",
63
+ "gitpython>=3.0.7,<4,!=3.1.19",
64
+ "numpy>=1.23,<3",
65
+ # The "packaging" package isn't version-capped because they use calendar-based
66
+ # versioning, i.e. "major" version increase != breaking changes
67
+ "packaging>=20",
68
+ # Pandas <1.4 has a bug related to deleting columns in a DataFrame changing
69
+ # the index dtype.
70
+ "pandas>=1.4.0,<3",
71
+ "pillow>=7.1.0,<13",
72
+ "pydeck>=0.8.0b4,<1",
73
+ # `protoc` < 3.20 is not able to generate protobuf code compatible with protobuf >= 3.20.
74
+ "protobuf>=3.20,<7",
75
+ # pyarrow is not semantically versioned, gets new major versions frequently, and
76
+ # doesn't tend to break the API on major version upgrades, so we don't put an
77
+ # upper bound on it.
78
+ "pyarrow>=7.0",
79
+ "requests>=2.27,<3",
80
+ "tenacity>=8.1.0,<10",
81
+ # Starting from Python 3.11, Python has built in support for reading TOML files.
82
+ # Let's make sure to remove this "toml" library when we stop supporting Python 3.10.
83
+ "toml>=0.10.1,<2",
84
+ # Tornado 6.0.3 was the current version when Python 3.8 was released (Oct 14, 2019).
85
+ # Tornado 6.5.0 is skipped due to a bug with Unicode characters in the filename.
86
+ # See https://github.com/tornadoweb/tornado/commit/62c276434dc5b13e10336666348408bf8c062391
87
+ "tornado>=6.0.3,<7,!=6.5.0",
88
+ # Starlette requires typing-extensions >= 4.10.
89
+ "typing-extensions>=4.10.0,<5",
90
+ # Don't require watchdog on MacOS, since it'll fail without xcode tools.
91
+ # Without watchdog, we fallback to a polling file watcher to check for app changes.
92
+ "watchdog>=2.1.5,<7; platform_system != 'Darwin'",
93
+ ]
94
+
95
+ [project.optional-dependencies]
96
+ # Optional dependency required for Snowflake connection:
97
+ snowflake = [
98
+ "snowflake-snowpark-python[modin]>=1.17.0; python_version<'3.12'",
99
+ "snowflake-connector-python>=3.3.0; python_version<'3.12'",
100
+ ]
101
+ # Optional dependency required for Starlette integration:
102
+ starlette = [
103
+ # ASGI web-framework:
104
+ "starlette>=0.40.0",
105
+ # ASGI server:
106
+ "uvicorn>=0.30.0",
107
+ # Required by starlette:
108
+ "anyio>=4.0.0",
109
+ # Required for file-upload support:
110
+ "python-multipart>=0.0.10",
111
+ # Required for websocket support:
112
+ "websockets>=12.0.0",
113
+ # Required for cookie signing:
114
+ "itsdangerous>=2.1.2",
115
+ ]
116
+ # Optional dependency required for PDF rendering:
117
+ pdf = ["streamlit-pdf>=1.0.0"]
118
+ # Optional dependency required for auth:
119
+ auth = ["Authlib>=1.3.2"]
120
+ # Optional charting dependencies:
121
+ charts = [
122
+ "matplotlib>=3.0.0",
123
+ "graphviz>=0.19.0",
124
+ "plotly>=4.0.0",
125
+ # orjson speeds up large plotly figure processing by 5-10x:
126
+ "orjson>=3.5.0",
127
+ ]
128
+ # Optional SQL connection dependency:
129
+ sql = ["SQLAlchemy>=2.0.0"]
130
+ # Optional dependency for better performance:
131
+ performance = [
132
+ # orjson speeds up large plotly figure processing by 5-10x:
133
+ "orjson>=3.5.0",
134
+ # uvloop speeds up the event loop:
135
+ "uvloop>=0.15.2; sys_platform != 'win32' and sys_platform != 'cygwin' and platform_python_implementation != 'PyPy'",
136
+ # Faster http parsing for Starlette server:
137
+ "httptools>=0.6.3",
138
+ ]
139
+ # Install all optional dependencies:
140
+ all = [
141
+ "streamlit[auth,charts,snowflake,sql,pdf,performance]",
142
+ # Improved exception traceback formatting:
143
+ "rich>=11.0.0",
144
+ ]
145
+
146
+ [project.scripts]
147
+ streamlit = "streamlit.web.cli:main"
148
+
149
+ [project.urls]
150
+ Homepage = "https://streamlit.io"
151
+ Documentation = "https://docs.streamlit.io/"
152
+ "Source Code" = "https://github.com/streamlit/streamlit"
153
+ "Bug Tracker" = "https://github.com/streamlit/streamlit/issues"
154
+ "Release Notes" = "https://docs.streamlit.io/develop/quick-reference/changelog"
155
+ Community = "https://discuss.streamlit.io/"
156
+
157
+ [tool.setuptools]
158
+ zip-safe = false
159
+ include-package-data = true
160
+
161
+ [tool.setuptools.packages.find]
162
+ exclude = ["tests", "tests.*"]
163
+
164
+ # PEP 561: https://mypy.readthedocs.io/en/stable/installed_packages.html
165
+ [tool.setuptools.package-data]
166
+ streamlit = ["py.typed", "hello/**/*.py"]
167
+
168
+ # =============================================================================
169
+ # Pytest Configuration
170
+ # =============================================================================
171
+ # Used when running pytest with -c lib/pyproject.toml from repo root.
172
+
173
+ [tool.pytest.ini_options]
174
+ testpaths = ["tests"]
175
+ # Required for pytest-asyncio to use function-scoped event loops by default
176
+ asyncio_default_fixture_loop_scope = "function"
177
+ markers = [
178
+ "slow: marks tests as slow",
179
+ "require_integration: marks tests that require integration dependencies",
180
+ "performance: performance tests",
181
+ ]
182
+ filterwarnings = [
183
+ # PyTest filter syntax: action:message:category:module:line
184
+
185
+ # External library warnings - wait for upstream fixes
186
+ "ignore::UserWarning:altair.*:",
187
+ "ignore::DeprecationWarning:flatbuffers.*:",
188
+ "ignore::DeprecationWarning:keras_preprocessing.*:",
189
+ # Plotly uses deprecated Matplotlib converter API (Matplotlib 3.10+)
190
+ "ignore:The converter attribute was deprecated:matplotlib.MatplotlibDeprecationWarning:plotly.*:",
191
+ # Altair selection deduplication warning - informational, not actionable
192
+ "ignore:Automatically deduplicated selection parameter:UserWarning:",
193
+
194
+ # Pytest plugin compatibility
195
+ # asyncio_default_fixture_loop_scope is required for pytest-asyncio but may
196
+ # trigger unknown config warning in some pytest versions
197
+ "ignore:Unknown config option. asyncio_default_fixture_loop_scope:_pytest.config.PytestConfigWarning:",
198
+
199
+ # Informational warnings from Streamlit code - expected behavior
200
+ # DataFrame.attrs serialization fails for non-JSON-serializable objects
201
+ "ignore:Could not serialize pd.DataFrame.attrs:UserWarning:",
202
+ ]
203
+ addopts = "--cov=streamlit --cov-report=html --cov-config=lib/pyproject.toml"
204
+
205
+ # =============================================================================
206
+ # Coverage Configuration
207
+ # =============================================================================
208
+ # Used by pytest-cov when running tests.
209
+
210
+ [tool.coverage.run]
211
+ source = ["streamlit"]
212
+ omit = [
213
+ "streamlit/proto/*",
214
+ "streamlit/vendor/*",
215
+ "streamlit/hello/*",
216
+ "streamlit/static/*",
217
+ ]
218
+
219
+ [tool.coverage.report]
220
+ omit = [
221
+ "streamlit/proto/*",
222
+ "streamlit/vendor/*",
223
+ "streamlit/hello/*",
224
+ "streamlit/static/*",
225
+ ]
226
+ exclude_also = [
227
+ "if TYPE_CHECKING:",
228
+ "def dg\\(self\\)",
229
+ "raise NotImplementedError",
230
+ ]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,292 @@
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ # isort: skip_file
16
+ # ruff: noqa: E402, A001
17
+
18
+ """Streamlit.
19
+
20
+ How to use Streamlit in 3 seconds:
21
+
22
+ 1. Write an app
23
+ >>> import streamlit as st
24
+ >>> st.write(anything_you_want)
25
+
26
+ 2. Run your app
27
+ $ streamlit run my_script.py
28
+
29
+ 3. Use your app
30
+ A new tab will open on your browser. That's your Streamlit app!
31
+
32
+ 4. Modify your code, save it, and watch changes live on your browser.
33
+
34
+ Take a look at the other commands in this module to find out what else
35
+ Streamlit can do:
36
+
37
+ >>> dir(streamlit)
38
+
39
+ Or try running our "Hello World":
40
+
41
+ $ streamlit hello
42
+
43
+ For more detailed info, see https://docs.streamlit.io.
44
+ """
45
+
46
+ # IMPORTANT: Prefix with an underscore anything that the user shouldn't see.
47
+
48
+ import os as _os
49
+
50
+ # Set Matplotlib backend to avoid a crash.
51
+ # The default Matplotlib backend crashes Python on OSX when run on a thread
52
+ # that's not the main thread, so here we set a safer backend as a fix.
53
+ # This fix is OS-independent. We didn't see a good reason to make this
54
+ # Mac-only. Consistency within Streamlit seemed more important.
55
+ # IMPORTANT: This needs to run on top of all imports before any other
56
+ # import of matplotlib could happen.
57
+ _os.environ["MPLBACKEND"] = "Agg"
58
+
59
+
60
+ # Must be at the top, to avoid circular dependency.
61
+ from streamlit import logger as _logger
62
+ from streamlit import config as _config
63
+ from streamlit.version import STREAMLIT_VERSION_STRING as _STREAMLIT_VERSION_STRING
64
+
65
+ # Give the package a version.
66
+ __version__ = _STREAMLIT_VERSION_STRING
67
+
68
+ # DeltaGenerator methods:
69
+ # We initialize them here so that it is clear where they are instantiated.
70
+ # Further, it helps us to break circular imports because the DeltaGenerator
71
+ # imports the different elements but some elements also require DeltaGenerator
72
+ # functions such as the dg_stack. Now, elements that require DeltaGenerator functions
73
+ # can import the singleton module.
74
+ from streamlit.delta_generator_singletons import (
75
+ DeltaGeneratorSingleton as _DeltaGeneratorSingleton,
76
+ )
77
+ from streamlit.delta_generator import DeltaGenerator as _DeltaGenerator
78
+ from streamlit.elements.lib.mutable_status_container import (
79
+ StatusContainer as _StatusContainer,
80
+ )
81
+ from streamlit.elements.lib.dialog import Dialog as _Dialog
82
+ from streamlit.elements.lib.mutable_expander_container import (
83
+ ExpanderContainer as _ExpanderContainer,
84
+ )
85
+ from streamlit.elements.lib.mutable_tab_container import TabContainer as _TabContainer
86
+ from streamlit.elements.lib.mutable_popover_container import (
87
+ PopoverContainer as _PopoverContainer,
88
+ )
89
+
90
+ # instantiate the DeltaGeneratorSingleton
91
+ _dg_singleton = _DeltaGeneratorSingleton(
92
+ delta_generator_cls=_DeltaGenerator,
93
+ status_container_cls=_StatusContainer,
94
+ dialog_container_cls=_Dialog,
95
+ expander_container_cls=_ExpanderContainer,
96
+ tab_container_cls=_TabContainer,
97
+ popover_container_cls=_PopoverContainer,
98
+ )
99
+ _main: _DeltaGenerator = _dg_singleton._main_dg
100
+ sidebar: _DeltaGenerator = _dg_singleton._sidebar_dg
101
+ _event: _DeltaGenerator = _dg_singleton._event_dg
102
+ _bottom: _DeltaGenerator = _dg_singleton._bottom_dg
103
+
104
+
105
+ from streamlit.elements.dialog_decorator import dialog_decorator as _dialog_decorator
106
+ from streamlit.runtime.caching import (
107
+ cache_resource as _cache_resource,
108
+ cache_data as _cache_data,
109
+ cache as _cache,
110
+ )
111
+ from streamlit.runtime.connection_factory import (
112
+ connection_factory as _connection,
113
+ )
114
+ from streamlit.runtime.fragment import fragment as _fragment
115
+ from streamlit.runtime.metrics_util import gather_metrics as _gather_metrics
116
+ from streamlit.runtime.secrets import secrets_singleton as _secrets_singleton
117
+ from streamlit.runtime.context import ContextProxy as _ContextProxy
118
+ from streamlit.runtime.state import (
119
+ SessionStateProxy as _SessionStateProxy,
120
+ QueryParamsProxy as _QueryParamsProxy,
121
+ )
122
+ from streamlit.user_info import (
123
+ UserInfoProxy as _UserInfoProxy,
124
+ login as _login,
125
+ logout as _logout,
126
+ )
127
+
128
+ import streamlit.column_config as _column_config
129
+
130
+ # Modules that the user should have access to. These are imported with the "as" syntax
131
+ # and the same name; note that renaming the import with "as" does not make it an
132
+ # explicit export. In this case, you should import it with an underscore to make clear
133
+ # that it is internal and then assign it to a variable with the new intended name.
134
+ # You can check the export behavior by running 'mypy --strict example_app.py', which
135
+ # disables implicit_reexport, where you use the respective command in the example_app.py
136
+ # Streamlit app.
137
+
138
+ from streamlit.commands.echo import echo as echo
139
+ from streamlit.commands.logo import logo as logo
140
+ from streamlit.commands.navigation import navigation as navigation
141
+ from streamlit.navigation.page import Page as Page
142
+
143
+ from streamlit.commands.page_config import set_page_config as set_page_config
144
+ from streamlit.commands.execution_control import (
145
+ stop as stop,
146
+ rerun as rerun,
147
+ switch_page as switch_page,
148
+ )
149
+
150
+
151
+ def _update_logger() -> None:
152
+ _logger.set_log_level(_config.get_option("logger.level").upper())
153
+ _logger.update_formatter()
154
+ _logger.init_tornado_logs()
155
+
156
+
157
+ # Make this file only depend on config option in an asynchronous manner. This
158
+ # avoids a race condition when another file (such as a test file) tries to pass
159
+ # in an alternative config.
160
+ _config.on_config_parsed(_update_logger, True)
161
+
162
+ secrets = _secrets_singleton
163
+
164
+ altair_chart = _main.altair_chart
165
+ area_chart = _main.area_chart
166
+ audio = _main.audio
167
+ audio_input = _main.audio_input
168
+ badge = _main.badge
169
+ balloons = _main.balloons
170
+ bar_chart = _main.bar_chart
171
+ _bidi_component = _main._bidi_component
172
+ bokeh_chart = _main.bokeh_chart
173
+ button = _main.button
174
+ caption = _main.caption
175
+ camera_input = _main.camera_input
176
+ chat_message = _main.chat_message
177
+ chat_input = _main.chat_input
178
+ checkbox = _main.checkbox
179
+ code = _main.code
180
+ columns = _main.columns
181
+ tabs = _main.tabs
182
+ container = _main.container
183
+ dataframe = _main.dataframe
184
+ data_editor = _main.data_editor
185
+ data_editor_plus = _main.data_editor_plus
186
+ date_input = _main.date_input
187
+ datetime_input = _main.datetime_input
188
+ divider = _main.divider
189
+ download_button = _main.download_button
190
+ expander = _main.expander
191
+ feedback = _main.feedback
192
+ pydeck_chart = _main.pydeck_chart
193
+ empty = _main.empty
194
+ error = _main.error
195
+ exception = _main.exception
196
+ file_uploader = _main.file_uploader
197
+ form = _main.form
198
+ form_submit_button = _main.form_submit_button
199
+ graphviz_chart = _main.graphviz_chart
200
+ header = _main.header
201
+ help = _main.help
202
+ html = _main.html
203
+ image = _main.image
204
+ info = _main.info
205
+ json = _main.json
206
+ latex = _main.latex
207
+ line_chart = _main.line_chart
208
+ link_button = _main.link_button
209
+ map = _main.map
210
+ markdown = _main.markdown
211
+ metric = _main.metric
212
+ multiselect = _main.multiselect
213
+ number_input = _main.number_input
214
+ page_link = _main.page_link
215
+ pdf = _main.pdf
216
+ pills = _main.pills
217
+ plotly_chart = _main.plotly_chart
218
+ popover = _main.popover
219
+ progress = _main.progress
220
+ pyplot = _main.pyplot
221
+ radio = _main.radio
222
+ scatter_chart = _main.scatter_chart
223
+ selectbox = _main.selectbox
224
+ select_slider = _main.select_slider
225
+ segmented_control = _main.segmented_control
226
+ slider = _main.slider
227
+ snow = _main.snow
228
+ space = _main.space
229
+ spinner = _main.spinner
230
+ subheader = _main.subheader
231
+ success = _main.success
232
+ table = _main.table
233
+ text = _main.text
234
+ text_area = _main.text_area
235
+ text_input = _main.text_input
236
+ toggle = _main.toggle
237
+ time_input = _main.time_input
238
+ title = _main.title
239
+ vega_lite_chart = _main.vega_lite_chart
240
+ video = _main.video
241
+ warning = _main.warning
242
+ write = _main.write
243
+ write_stream = _main.write_stream
244
+ color_picker = _main.color_picker
245
+ status = _main.status
246
+
247
+ # Events - Note: these methods cannot be called directly on sidebar
248
+ # (ex: st.sidebar.toast)
249
+ toast = _event.toast
250
+
251
+ # Config
252
+ # We add the metrics tracking here, since importing
253
+ # gather_metrics in config causes a circular dependency
254
+ get_option = _gather_metrics("get_option", _config.get_option)
255
+ set_option = _gather_metrics("set_option", _config.set_user_option)
256
+
257
+ # Session State
258
+ session_state = _SessionStateProxy()
259
+
260
+ query_params = _QueryParamsProxy()
261
+
262
+ context = _ContextProxy()
263
+
264
+ # Caching
265
+ cache_data = _cache_data
266
+ cache_resource = _cache_resource
267
+ # `st.cache` is deprecated and should be removed soon
268
+ cache = _cache
269
+
270
+ # Namespaces
271
+ column_config = _column_config
272
+
273
+ # Connection
274
+ connection = _connection
275
+
276
+ # Fragment and dialog
277
+ dialog = _dialog_decorator
278
+ fragment = _fragment
279
+
280
+
281
+ # Auth
282
+ login = _login
283
+ logout = _logout
284
+
285
+ # User
286
+ user = _UserInfoProxy()
287
+
288
+ # make it possible to call streamlit.components.v1.html etc. by importing it here
289
+ # import in the very end to avoid partially-initialized module import errors, because
290
+ # streamlit.components.v1 also uses some streamlit imports
291
+ import streamlit.components.v1 # noqa: F401
292
+ import streamlit.components.v2 # noqa: F401
@@ -0,0 +1,20 @@
1
+ # Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
2
+ #
3
+ # Licensed under the Apache License, Version 2.0 (the "License");
4
+ # you may not use this file except in compliance with the License.
5
+ # You may obtain a copy of the License at
6
+ #
7
+ # http://www.apache.org/licenses/LICENSE-2.0
8
+ #
9
+ # Unless required by applicable law or agreed to in writing, software
10
+ # distributed under the License is distributed on an "AS IS" BASIS,
11
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ # See the License for the specific language governing permissions and
13
+ # limitations under the License.
14
+
15
+ from streamlit.web.cli import main
16
+
17
+ if __name__ == "__main__":
18
+ # Set prog_name so that the Streamlit server sees the same command line
19
+ # string whether streamlit is called directly or via `python -m streamlit`.
20
+ main(prog_name="streamlit")