streamlit-data-editor-plus 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamlit/__init__.py +292 -0
- streamlit/__main__.py +20 -0
- streamlit/auth_util.py +583 -0
- streamlit/cli_util.py +107 -0
- streamlit/column_config.py +60 -0
- streamlit/commands/__init__.py +13 -0
- streamlit/commands/echo.py +128 -0
- streamlit/commands/execution_control.py +318 -0
- streamlit/commands/logo.py +250 -0
- streamlit/commands/navigation.py +430 -0
- streamlit/commands/page_config.py +335 -0
- streamlit/components/__init__.py +13 -0
- streamlit/components/lib/__init__.py +13 -0
- streamlit/components/lib/local_component_registry.py +84 -0
- streamlit/components/types/__init__.py +13 -0
- streamlit/components/types/base_component_registry.py +99 -0
- streamlit/components/types/base_custom_component.py +158 -0
- streamlit/components/v1/__init__.py +29 -0
- streamlit/components/v1/component_arrow.py +141 -0
- streamlit/components/v1/component_registry.py +147 -0
- streamlit/components/v1/components.py +38 -0
- streamlit/components/v1/custom_component.py +239 -0
- streamlit/components/v2/__init__.py +531 -0
- streamlit/components/v2/bidi_component/__init__.py +20 -0
- streamlit/components/v2/bidi_component/constants.py +29 -0
- streamlit/components/v2/bidi_component/main.py +537 -0
- streamlit/components/v2/bidi_component/serialization.py +272 -0
- streamlit/components/v2/bidi_component/state.py +92 -0
- streamlit/components/v2/component_definition_resolver.py +143 -0
- streamlit/components/v2/component_file_watcher.py +403 -0
- streamlit/components/v2/component_manager.py +439 -0
- streamlit/components/v2/component_manifest_handler.py +122 -0
- streamlit/components/v2/component_path_utils.py +233 -0
- streamlit/components/v2/component_registry.py +426 -0
- streamlit/components/v2/get_bidi_component_manager.py +51 -0
- streamlit/components/v2/manifest_scanner.py +620 -0
- streamlit/components/v2/presentation.py +198 -0
- streamlit/components/v2/types.py +317 -0
- streamlit/config.py +2977 -0
- streamlit/config_option.py +319 -0
- streamlit/config_util.py +887 -0
- streamlit/connections/__init__.py +32 -0
- streamlit/connections/base_connection.py +215 -0
- streamlit/connections/snowflake_connection.py +765 -0
- streamlit/connections/snowpark_connection.py +213 -0
- streamlit/connections/sql_connection.py +427 -0
- streamlit/connections/util.py +97 -0
- streamlit/cursor.py +314 -0
- streamlit/dataframe_util.py +1434 -0
- streamlit/delta_generator.py +696 -0
- streamlit/delta_generator_singletons.py +243 -0
- streamlit/deprecation_util.py +253 -0
- streamlit/development.py +21 -0
- streamlit/elements/__init__.py +13 -0
- streamlit/elements/alert.py +341 -0
- streamlit/elements/arrow.py +1065 -0
- streamlit/elements/balloons.py +47 -0
- streamlit/elements/bokeh_chart.py +75 -0
- streamlit/elements/code.py +154 -0
- streamlit/elements/deck_gl_json_chart.py +627 -0
- streamlit/elements/dialog_decorator.py +320 -0
- streamlit/elements/empty.py +130 -0
- streamlit/elements/exception.py +370 -0
- streamlit/elements/form.py +481 -0
- streamlit/elements/graphviz_chart.py +226 -0
- streamlit/elements/heading.py +407 -0
- streamlit/elements/help.py +565 -0
- streamlit/elements/html.py +189 -0
- streamlit/elements/iframe.py +245 -0
- streamlit/elements/image.py +221 -0
- streamlit/elements/json.py +171 -0
- streamlit/elements/layouts.py +1534 -0
- streamlit/elements/lib/__init__.py +13 -0
- streamlit/elements/lib/built_in_chart_utils.py +1316 -0
- streamlit/elements/lib/color_util.py +272 -0
- streamlit/elements/lib/column_config_utils.py +555 -0
- streamlit/elements/lib/column_types.py +2699 -0
- streamlit/elements/lib/dialog.py +212 -0
- streamlit/elements/lib/dicttools.py +152 -0
- streamlit/elements/lib/file_uploader_utils.py +91 -0
- streamlit/elements/lib/form_utils.py +77 -0
- streamlit/elements/lib/image_utils.py +447 -0
- streamlit/elements/lib/js_number.py +105 -0
- streamlit/elements/lib/layout_utils.py +325 -0
- streamlit/elements/lib/mutable_expander_container.py +73 -0
- streamlit/elements/lib/mutable_popover_container.py +73 -0
- streamlit/elements/lib/mutable_status_container.py +194 -0
- streamlit/elements/lib/mutable_tab_container.py +73 -0
- streamlit/elements/lib/options_selector_utils.py +480 -0
- streamlit/elements/lib/pandas_styler_utils.py +302 -0
- streamlit/elements/lib/policies.py +198 -0
- streamlit/elements/lib/shortcut_utils.py +152 -0
- streamlit/elements/lib/streamlit_plotly_theme.py +206 -0
- streamlit/elements/lib/subtitle_utils.py +175 -0
- streamlit/elements/lib/utils.py +274 -0
- streamlit/elements/map.py +526 -0
- streamlit/elements/markdown.py +529 -0
- streamlit/elements/media.py +843 -0
- streamlit/elements/metric.py +529 -0
- streamlit/elements/pdf.py +190 -0
- streamlit/elements/plotly_chart.py +779 -0
- streamlit/elements/progress.py +172 -0
- streamlit/elements/pyplot.py +240 -0
- streamlit/elements/snow.py +47 -0
- streamlit/elements/space.py +121 -0
- streamlit/elements/spinner.py +152 -0
- streamlit/elements/table.py +240 -0
- streamlit/elements/text.py +113 -0
- streamlit/elements/toast.py +175 -0
- streamlit/elements/vega_charts.py +2510 -0
- streamlit/elements/widgets/__init__.py +13 -0
- streamlit/elements/widgets/audio_input.py +334 -0
- streamlit/elements/widgets/button.py +1559 -0
- streamlit/elements/widgets/button_group.py +1061 -0
- streamlit/elements/widgets/camera_input.py +281 -0
- streamlit/elements/widgets/chat.py +1028 -0
- streamlit/elements/widgets/checkbox.py +420 -0
- streamlit/elements/widgets/color_picker.py +329 -0
- streamlit/elements/widgets/data_editor.py +1168 -0
- streamlit/elements/widgets/data_editor_plus.py +902 -0
- streamlit/elements/widgets/feedback.py +322 -0
- streamlit/elements/widgets/file_uploader.py +592 -0
- streamlit/elements/widgets/multiselect.py +654 -0
- streamlit/elements/widgets/number_input.py +719 -0
- streamlit/elements/widgets/radio.py +551 -0
- streamlit/elements/widgets/select_slider.py +568 -0
- streamlit/elements/widgets/selectbox.py +680 -0
- streamlit/elements/widgets/slider.py +1093 -0
- streamlit/elements/widgets/text_widgets.py +779 -0
- streamlit/elements/widgets/time_widgets.py +1712 -0
- streamlit/elements/write.py +585 -0
- streamlit/emojis.py +34 -0
- streamlit/env_util.py +56 -0
- streamlit/error_util.py +112 -0
- streamlit/errors.py +680 -0
- streamlit/external/__init__.py +13 -0
- streamlit/external/langchain/__init__.py +23 -0
- streamlit/external/langchain/streamlit_callback_handler.py +410 -0
- streamlit/file_util.py +266 -0
- streamlit/git_util.py +200 -0
- streamlit/hello/__init__.py +13 -0
- streamlit/hello/__pycache__/__init__.cpython-312.pyc +0 -0
- streamlit/hello/__pycache__/streamlit_app.cpython-312.pyc +0 -0
- streamlit/hello/animation_demo.py +82 -0
- streamlit/hello/dataframe_demo.py +71 -0
- streamlit/hello/hello.py +46 -0
- streamlit/hello/mapping_demo.py +113 -0
- streamlit/hello/plotting_demo.py +62 -0
- streamlit/hello/streamlit_app.py +57 -0
- streamlit/hello/utils.py +30 -0
- streamlit/logger.py +129 -0
- streamlit/material_icon_names.py +25 -0
- streamlit/navigation/__init__.py +13 -0
- streamlit/navigation/page.py +365 -0
- streamlit/net_util.py +125 -0
- streamlit/path_security.py +98 -0
- streamlit/platform.py +31 -0
- streamlit/proto/Alert_pb2.py +28 -0
- streamlit/proto/Alert_pb2.pyi +100 -0
- streamlit/proto/AppPage_pb2.py +25 -0
- streamlit/proto/AppPage_pb2.pyi +75 -0
- streamlit/proto/ArrowData_pb2.py +27 -0
- streamlit/proto/ArrowData_pb2.pyi +103 -0
- streamlit/proto/ArrowNamedDataSet_pb2.py +26 -0
- streamlit/proto/ArrowNamedDataSet_pb2.pyi +65 -0
- streamlit/proto/AudioInput_pb2.py +26 -0
- streamlit/proto/AudioInput_pb2.pyi +72 -0
- streamlit/proto/Audio_pb2.py +26 -0
- streamlit/proto/Audio_pb2.pyi +75 -0
- streamlit/proto/AuthRedirect_pb2.py +25 -0
- streamlit/proto/AuthRedirect_pb2.pyi +48 -0
- streamlit/proto/AutoRerun_pb2.py +25 -0
- streamlit/proto/AutoRerun_pb2.pyi +52 -0
- streamlit/proto/BackMsg_pb2.py +29 -0
- streamlit/proto/BackMsg_pb2.pyi +132 -0
- streamlit/proto/Balloons_pb2.py +25 -0
- streamlit/proto/Balloons_pb2.pyi +48 -0
- streamlit/proto/BidiComponent_pb2.py +32 -0
- streamlit/proto/BidiComponent_pb2.pyi +176 -0
- streamlit/proto/Block_pb2.py +62 -0
- streamlit/proto/Block_pb2.pyi +518 -0
- streamlit/proto/ButtonGroup_pb2.py +32 -0
- streamlit/proto/ButtonGroup_pb2.pyi +157 -0
- streamlit/proto/ButtonLikeIconPosition_pb2.py +25 -0
- streamlit/proto/ButtonLikeIconPosition_pb2.pyi +47 -0
- streamlit/proto/Button_pb2.py +26 -0
- streamlit/proto/Button_pb2.pyi +82 -0
- streamlit/proto/CameraInput_pb2.py +26 -0
- streamlit/proto/CameraInput_pb2.pyi +66 -0
- streamlit/proto/ChatInput_pb2.py +27 -0
- streamlit/proto/ChatInput_pb2.pyi +113 -0
- streamlit/proto/Checkbox_pb2.py +28 -0
- streamlit/proto/Checkbox_pb2.pyi +99 -0
- streamlit/proto/ClientState_pb2.py +28 -0
- streamlit/proto/ClientState_pb2.pyi +137 -0
- streamlit/proto/Code_pb2.py +25 -0
- streamlit/proto/Code_pb2.pyi +59 -0
- streamlit/proto/ColorPicker_pb2.py +26 -0
- streamlit/proto/ColorPicker_pb2.pyi +82 -0
- streamlit/proto/Common_pb2.py +49 -0
- streamlit/proto/Common_pb2.pyi +325 -0
- streamlit/proto/Components_pb2.py +33 -0
- streamlit/proto/Components_pb2.pyi +196 -0
- streamlit/proto/Dataframe_pb2.py +30 -0
- streamlit/proto/Dataframe_pb2.pyi +172 -0
- streamlit/proto/DateInput_pb2.py +26 -0
- streamlit/proto/DateInput_pb2.pyi +91 -0
- streamlit/proto/DateTimeInput_pb2.py +26 -0
- streamlit/proto/DateTimeInput_pb2.pyi +94 -0
- streamlit/proto/DeckGlJsonChart_pb2.py +27 -0
- streamlit/proto/DeckGlJsonChart_pb2.pyi +91 -0
- streamlit/proto/Delta_pb2.py +29 -0
- streamlit/proto/Delta_pb2.pyi +82 -0
- streamlit/proto/DownloadButton_pb2.py +26 -0
- streamlit/proto/DownloadButton_pb2.pyi +92 -0
- streamlit/proto/Element_pb2.py +81 -0
- streamlit/proto/Element_pb2.pyi +348 -0
- streamlit/proto/Empty_pb2.py +25 -0
- streamlit/proto/Empty_pb2.pyi +42 -0
- streamlit/proto/Exception_pb2.py +26 -0
- streamlit/proto/Exception_pb2.pyi +88 -0
- streamlit/proto/Favicon_pb2.py +25 -0
- streamlit/proto/Favicon_pb2.pyi +47 -0
- streamlit/proto/Feedback_pb2.py +27 -0
- streamlit/proto/Feedback_pb2.pyi +93 -0
- streamlit/proto/FileUploader_pb2.py +26 -0
- streamlit/proto/FileUploader_pb2.pyi +90 -0
- streamlit/proto/ForwardMsg_pb2.py +48 -0
- streamlit/proto/ForwardMsg_pb2.pyi +296 -0
- streamlit/proto/GapSize_pb2.py +27 -0
- streamlit/proto/GapSize_pb2.pyi +82 -0
- streamlit/proto/GitInfo_pb2.py +27 -0
- streamlit/proto/GitInfo_pb2.pyi +84 -0
- streamlit/proto/GraphVizChart_pb2.py +25 -0
- streamlit/proto/GraphVizChart_pb2.pyi +56 -0
- streamlit/proto/Heading_pb2.py +25 -0
- streamlit/proto/Heading_pb2.pyi +63 -0
- streamlit/proto/HeightConfig_pb2.py +25 -0
- streamlit/proto/HeightConfig_pb2.pyi +61 -0
- streamlit/proto/Help_pb2.py +27 -0
- streamlit/proto/Help_pb2.pyi +104 -0
- streamlit/proto/Html_pb2.py +25 -0
- streamlit/proto/Html_pb2.pyi +52 -0
- streamlit/proto/IFrame_pb2.py +25 -0
- streamlit/proto/IFrame_pb2.pyi +68 -0
- streamlit/proto/Image_pb2.py +27 -0
- streamlit/proto/Image_pb2.pyi +73 -0
- streamlit/proto/Json_pb2.py +25 -0
- streamlit/proto/Json_pb2.pyi +63 -0
- streamlit/proto/LabelVisibility_pb2.py +27 -0
- streamlit/proto/LabelVisibility_pb2.pyi +69 -0
- streamlit/proto/LinkButton_pb2.py +26 -0
- streamlit/proto/LinkButton_pb2.pyi +76 -0
- streamlit/proto/Logo_pb2.py +27 -0
- streamlit/proto/Logo_pb2.pyi +82 -0
- streamlit/proto/Markdown_pb2.py +27 -0
- streamlit/proto/Markdown_pb2.pyi +83 -0
- streamlit/proto/Metric_pb2.py +32 -0
- streamlit/proto/Metric_pb2.pyi +145 -0
- streamlit/proto/MetricsEvent_pb2.py +28 -0
- streamlit/proto/MetricsEvent_pb2.pyi +224 -0
- streamlit/proto/MultiSelect_pb2.py +26 -0
- streamlit/proto/MultiSelect_pb2.pyi +108 -0
- streamlit/proto/Navigation_pb2.py +28 -0
- streamlit/proto/Navigation_pb2.pyi +89 -0
- streamlit/proto/NewSession_pb2.py +47 -0
- streamlit/proto/NewSession_pb2.pyi +753 -0
- streamlit/proto/NumberInput_pb2.py +28 -0
- streamlit/proto/NumberInput_pb2.pyi +138 -0
- streamlit/proto/PageConfig_pb2.py +33 -0
- streamlit/proto/PageConfig_pb2.pyi +179 -0
- streamlit/proto/PageInfo_pb2.py +25 -0
- streamlit/proto/PageInfo_pb2.pyi +50 -0
- streamlit/proto/PageLink_pb2.py +26 -0
- streamlit/proto/PageLink_pb2.pyi +80 -0
- streamlit/proto/PageNotFound_pb2.py +25 -0
- streamlit/proto/PageNotFound_pb2.pyi +49 -0
- streamlit/proto/PageProfile_pb2.py +29 -0
- streamlit/proto/PageProfile_pb2.pyi +146 -0
- streamlit/proto/ParentMessage_pb2.py +25 -0
- streamlit/proto/ParentMessage_pb2.pyi +53 -0
- streamlit/proto/PlotlyChart_pb2.py +27 -0
- streamlit/proto/PlotlyChart_pb2.pyi +96 -0
- streamlit/proto/Progress_pb2.py +25 -0
- streamlit/proto/Progress_pb2.pyi +50 -0
- streamlit/proto/Radio_pb2.py +26 -0
- streamlit/proto/Radio_pb2.pyi +104 -0
- streamlit/proto/RootContainer_pb2.py +25 -0
- streamlit/proto/RootContainer_pb2.pyi +56 -0
- streamlit/proto/Selectbox_pb2.py +26 -0
- streamlit/proto/Selectbox_pb2.pyi +107 -0
- streamlit/proto/SessionEvent_pb2.py +26 -0
- streamlit/proto/SessionEvent_pb2.pyi +72 -0
- streamlit/proto/SessionStatus_pb2.py +25 -0
- streamlit/proto/SessionStatus_pb2.pyi +64 -0
- streamlit/proto/Skeleton_pb2.py +27 -0
- streamlit/proto/Skeleton_pb2.pyi +75 -0
- streamlit/proto/Slider_pb2.py +30 -0
- streamlit/proto/Slider_pb2.pyi +161 -0
- streamlit/proto/Snow_pb2.py +25 -0
- streamlit/proto/Snow_pb2.pyi +48 -0
- streamlit/proto/Space_pb2.py +25 -0
- streamlit/proto/Space_pb2.pyi +48 -0
- streamlit/proto/Spinner_pb2.py +25 -0
- streamlit/proto/Spinner_pb2.pyi +56 -0
- streamlit/proto/Table_pb2.py +28 -0
- streamlit/proto/Table_pb2.pyi +83 -0
- streamlit/proto/TextAlignmentConfig_pb2.py +27 -0
- streamlit/proto/TextAlignmentConfig_pb2.pyi +69 -0
- streamlit/proto/TextArea_pb2.py +26 -0
- streamlit/proto/TextArea_pb2.pyi +97 -0
- streamlit/proto/TextInput_pb2.py +28 -0
- streamlit/proto/TextInput_pb2.pyi +124 -0
- streamlit/proto/Text_pb2.py +25 -0
- streamlit/proto/Text_pb2.pyi +53 -0
- streamlit/proto/TimeInput_pb2.py +26 -0
- streamlit/proto/TimeInput_pb2.pyi +86 -0
- streamlit/proto/Toast_pb2.py +25 -0
- streamlit/proto/Toast_pb2.pyi +64 -0
- streamlit/proto/Transient_pb2.py +26 -0
- streamlit/proto/Transient_pb2.pyi +53 -0
- streamlit/proto/VegaLiteChart_pb2.py +27 -0
- streamlit/proto/VegaLiteChart_pb2.pyi +92 -0
- streamlit/proto/Video_pb2.py +30 -0
- streamlit/proto/Video_pb2.pyi +129 -0
- streamlit/proto/WidgetStates_pb2.py +31 -0
- streamlit/proto/WidgetStates_pb2.pyi +157 -0
- streamlit/proto/WidthConfig_pb2.py +25 -0
- streamlit/proto/WidthConfig_pb2.pyi +61 -0
- streamlit/proto/__init__.py +15 -0
- streamlit/proto/openmetrics_data_model_pb2.py +58 -0
- streamlit/proto/openmetrics_data_model_pb2.pyi +558 -0
- streamlit/py.typed +0 -0
- streamlit/runtime/__init__.py +50 -0
- streamlit/runtime/app_session.py +1302 -0
- streamlit/runtime/caching/__init__.py +118 -0
- streamlit/runtime/caching/cache_data_api.py +775 -0
- streamlit/runtime/caching/cache_errors.py +143 -0
- streamlit/runtime/caching/cache_resource_api.py +756 -0
- streamlit/runtime/caching/cache_type.py +33 -0
- streamlit/runtime/caching/cache_utils.py +601 -0
- streamlit/runtime/caching/cached_message_replay.py +290 -0
- streamlit/runtime/caching/hashing.py +655 -0
- streamlit/runtime/caching/legacy_cache_api.py +170 -0
- streamlit/runtime/caching/storage/__init__.py +29 -0
- streamlit/runtime/caching/storage/cache_storage_protocol.py +236 -0
- streamlit/runtime/caching/storage/dummy_cache_storage.py +60 -0
- streamlit/runtime/caching/storage/in_memory_cache_storage_wrapper.py +159 -0
- streamlit/runtime/caching/storage/local_disk_cache_storage.py +223 -0
- streamlit/runtime/caching/ttl_cleanup_cache.py +85 -0
- streamlit/runtime/connection_factory.py +498 -0
- streamlit/runtime/context.py +449 -0
- streamlit/runtime/context_util.py +49 -0
- streamlit/runtime/credentials.py +355 -0
- streamlit/runtime/download_data_util.py +53 -0
- streamlit/runtime/forward_msg_cache.py +101 -0
- streamlit/runtime/forward_msg_queue.py +263 -0
- streamlit/runtime/fragment.py +441 -0
- streamlit/runtime/media_file_manager.py +409 -0
- streamlit/runtime/media_file_storage.py +143 -0
- streamlit/runtime/memory_media_file_storage.py +201 -0
- streamlit/runtime/memory_session_storage.py +77 -0
- streamlit/runtime/memory_uploaded_file_manager.py +149 -0
- streamlit/runtime/metrics_util.py +612 -0
- streamlit/runtime/pages_manager.py +160 -0
- streamlit/runtime/runtime.py +775 -0
- streamlit/runtime/runtime_util.py +108 -0
- streamlit/runtime/script_data.py +46 -0
- streamlit/runtime/scriptrunner/__init__.py +38 -0
- streamlit/runtime/scriptrunner/exec_code.py +167 -0
- streamlit/runtime/scriptrunner/magic.py +277 -0
- streamlit/runtime/scriptrunner/magic_funcs.py +32 -0
- streamlit/runtime/scriptrunner/script_cache.py +89 -0
- streamlit/runtime/scriptrunner/script_runner.py +805 -0
- streamlit/runtime/scriptrunner_utils/__init__.py +19 -0
- streamlit/runtime/scriptrunner_utils/exceptions.py +44 -0
- streamlit/runtime/scriptrunner_utils/script_requests.py +311 -0
- streamlit/runtime/scriptrunner_utils/script_run_context.py +277 -0
- streamlit/runtime/secrets.py +533 -0
- streamlit/runtime/session_manager.py +430 -0
- streamlit/runtime/state/__init__.py +47 -0
- streamlit/runtime/state/common.py +256 -0
- streamlit/runtime/state/presentation.py +85 -0
- streamlit/runtime/state/query_params.py +767 -0
- streamlit/runtime/state/query_params_proxy.py +222 -0
- streamlit/runtime/state/safe_session_state.py +146 -0
- streamlit/runtime/state/session_state.py +1299 -0
- streamlit/runtime/state/session_state_proxy.py +153 -0
- streamlit/runtime/state/widgets.py +197 -0
- streamlit/runtime/stats.py +356 -0
- streamlit/runtime/theme_util.py +148 -0
- streamlit/runtime/uploaded_file_manager.py +152 -0
- streamlit/runtime/websocket_session_manager.py +301 -0
- streamlit/source_util.py +97 -0
- streamlit/starlette.py +34 -0
- streamlit/string_util.py +264 -0
- streamlit/temporary_directory.py +67 -0
- streamlit/testing/__init__.py +13 -0
- streamlit/testing/v1/__init__.py +17 -0
- streamlit/testing/v1/app_test.py +1089 -0
- streamlit/testing/v1/element_tree.py +2272 -0
- streamlit/testing/v1/local_script_runner.py +176 -0
- streamlit/testing/v1/util.py +61 -0
- streamlit/time_util.py +73 -0
- streamlit/type_util.py +480 -0
- streamlit/url_util.py +120 -0
- streamlit/user_info.py +698 -0
- streamlit/util.py +108 -0
- streamlit/vendor/__init__.py +0 -0
- streamlit/vendor/pympler/__init__.py +0 -0
- streamlit/vendor/pympler/asizeof.py +2870 -0
- streamlit/version.py +18 -0
- streamlit/watcher/__init__.py +28 -0
- streamlit/watcher/event_based_path_watcher.py +500 -0
- streamlit/watcher/folder_black_list.py +82 -0
- streamlit/watcher/local_sources_watcher.py +297 -0
- streamlit/watcher/path_watcher.py +244 -0
- streamlit/watcher/polling_path_watcher.py +138 -0
- streamlit/watcher/util.py +223 -0
- streamlit/web/__init__.py +13 -0
- streamlit/web/bootstrap.py +463 -0
- streamlit/web/cache_storage_manager_config.py +38 -0
- streamlit/web/cli.py +465 -0
- streamlit/web/server/__init__.py +30 -0
- streamlit/web/server/app_discovery.py +422 -0
- streamlit/web/server/app_static_file_handler.py +102 -0
- streamlit/web/server/authlib_tornado_integration.py +125 -0
- streamlit/web/server/bidi_component_request_handler.py +193 -0
- streamlit/web/server/browser_websocket_handler.py +341 -0
- streamlit/web/server/component_file_utils.py +105 -0
- streamlit/web/server/component_request_handler.py +107 -0
- streamlit/web/server/media_file_handler.py +148 -0
- streamlit/web/server/oauth_authlib_routes.py +314 -0
- streamlit/web/server/oidc_mixin.py +138 -0
- streamlit/web/server/routes.py +257 -0
- streamlit/web/server/server.py +555 -0
- streamlit/web/server/server_util.py +235 -0
- streamlit/web/server/starlette/__init__.py +23 -0
- streamlit/web/server/starlette/starlette_app.py +541 -0
- streamlit/web/server/starlette/starlette_app_utils.py +306 -0
- streamlit/web/server/starlette/starlette_auth_routes.py +584 -0
- streamlit/web/server/starlette/starlette_gzip_middleware.py +121 -0
- streamlit/web/server/starlette/starlette_path_security_middleware.py +97 -0
- streamlit/web/server/starlette/starlette_routes.py +884 -0
- streamlit/web/server/starlette/starlette_server.py +496 -0
- streamlit/web/server/starlette/starlette_server_config.py +55 -0
- streamlit/web/server/starlette/starlette_static_routes.py +181 -0
- streamlit/web/server/starlette/starlette_websocket.py +560 -0
- streamlit/web/server/stats_request_handler.py +116 -0
- streamlit/web/server/upload_file_request_handler.py +158 -0
- streamlit/web/server/websocket_headers.py +56 -0
- streamlit_data_editor_plus-0.1.0.dist-info/METADATA +76 -0
- streamlit_data_editor_plus-0.1.0.dist-info/RECORD +456 -0
- streamlit_data_editor_plus-0.1.0.dist-info/WHEEL +5 -0
- streamlit_data_editor_plus-0.1.0.dist-info/entry_points.txt +2 -0
- streamlit_data_editor_plus-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
*!
|
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from collections import abc as _abc
|
|
21
|
+
from google.protobuf import descriptor as _descriptor
|
|
22
|
+
from google.protobuf import message as _message
|
|
23
|
+
from google.protobuf.internal import containers as _containers
|
|
24
|
+
import builtins as _builtins
|
|
25
|
+
import sys
|
|
26
|
+
import typing as _typing
|
|
27
|
+
|
|
28
|
+
if sys.version_info >= (3, 10):
|
|
29
|
+
from typing import TypeAlias as _TypeAlias
|
|
30
|
+
else:
|
|
31
|
+
from typing_extensions import TypeAlias as _TypeAlias
|
|
32
|
+
|
|
33
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
34
|
+
|
|
35
|
+
@_typing.final
|
|
36
|
+
class StringArray(_message.Message):
|
|
37
|
+
"""Message types that are common to multiple protobufs."""
|
|
38
|
+
|
|
39
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
40
|
+
|
|
41
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
42
|
+
@_builtins.property
|
|
43
|
+
def data(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
|
|
44
|
+
def __init__(
|
|
45
|
+
self,
|
|
46
|
+
*,
|
|
47
|
+
data: _abc.Iterable[_builtins.str] | None = ...,
|
|
48
|
+
) -> None: ...
|
|
49
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data"] # noqa: Y015
|
|
50
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
51
|
+
|
|
52
|
+
Global___StringArray: _TypeAlias = StringArray # noqa: Y015
|
|
53
|
+
|
|
54
|
+
@_typing.final
|
|
55
|
+
class DoubleArray(_message.Message):
|
|
56
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
57
|
+
|
|
58
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
59
|
+
@_builtins.property
|
|
60
|
+
def data(self) -> _containers.RepeatedScalarFieldContainer[_builtins.float]: ...
|
|
61
|
+
def __init__(
|
|
62
|
+
self,
|
|
63
|
+
*,
|
|
64
|
+
data: _abc.Iterable[_builtins.float] | None = ...,
|
|
65
|
+
) -> None: ...
|
|
66
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data"] # noqa: Y015
|
|
67
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
68
|
+
|
|
69
|
+
Global___DoubleArray: _TypeAlias = DoubleArray # noqa: Y015
|
|
70
|
+
|
|
71
|
+
@_typing.final
|
|
72
|
+
class Int32Array(_message.Message):
|
|
73
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
74
|
+
|
|
75
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
76
|
+
@_builtins.property
|
|
77
|
+
def data(self) -> _containers.RepeatedScalarFieldContainer[_builtins.int]: ...
|
|
78
|
+
def __init__(
|
|
79
|
+
self,
|
|
80
|
+
*,
|
|
81
|
+
data: _abc.Iterable[_builtins.int] | None = ...,
|
|
82
|
+
) -> None: ...
|
|
83
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data"] # noqa: Y015
|
|
84
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
85
|
+
|
|
86
|
+
Global___Int32Array: _TypeAlias = Int32Array # noqa: Y015
|
|
87
|
+
|
|
88
|
+
@_typing.final
|
|
89
|
+
class Int64Array(_message.Message):
|
|
90
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
91
|
+
|
|
92
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
93
|
+
@_builtins.property
|
|
94
|
+
def data(self) -> _containers.RepeatedScalarFieldContainer[_builtins.int]: ...
|
|
95
|
+
def __init__(
|
|
96
|
+
self,
|
|
97
|
+
*,
|
|
98
|
+
data: _abc.Iterable[_builtins.int] | None = ...,
|
|
99
|
+
) -> None: ...
|
|
100
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data"] # noqa: Y015
|
|
101
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
102
|
+
|
|
103
|
+
Global___Int64Array: _TypeAlias = Int64Array # noqa: Y015
|
|
104
|
+
|
|
105
|
+
@_typing.final
|
|
106
|
+
class SInt64Array(_message.Message):
|
|
107
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
108
|
+
|
|
109
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
110
|
+
@_builtins.property
|
|
111
|
+
def data(self) -> _containers.RepeatedScalarFieldContainer[_builtins.int]: ...
|
|
112
|
+
def __init__(
|
|
113
|
+
self,
|
|
114
|
+
*,
|
|
115
|
+
data: _abc.Iterable[_builtins.int] | None = ...,
|
|
116
|
+
) -> None: ...
|
|
117
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data"] # noqa: Y015
|
|
118
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
119
|
+
|
|
120
|
+
Global___SInt64Array: _TypeAlias = SInt64Array # noqa: Y015
|
|
121
|
+
|
|
122
|
+
@_typing.final
|
|
123
|
+
class UInt32Array(_message.Message):
|
|
124
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
125
|
+
|
|
126
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
127
|
+
@_builtins.property
|
|
128
|
+
def data(self) -> _containers.RepeatedScalarFieldContainer[_builtins.int]: ...
|
|
129
|
+
def __init__(
|
|
130
|
+
self,
|
|
131
|
+
*,
|
|
132
|
+
data: _abc.Iterable[_builtins.int] | None = ...,
|
|
133
|
+
) -> None: ...
|
|
134
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data"] # noqa: Y015
|
|
135
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
136
|
+
|
|
137
|
+
Global___UInt32Array: _TypeAlias = UInt32Array # noqa: Y015
|
|
138
|
+
|
|
139
|
+
@_typing.final
|
|
140
|
+
class StringTriggerValue(_message.Message):
|
|
141
|
+
"""DEPRECATED: This proto message is deprecated and unused. The ChatInputValue
|
|
142
|
+
proto message should be used instead.
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
146
|
+
|
|
147
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
148
|
+
data: _builtins.str
|
|
149
|
+
def __init__(
|
|
150
|
+
self,
|
|
151
|
+
*,
|
|
152
|
+
data: _builtins.str | None = ...,
|
|
153
|
+
) -> None: ...
|
|
154
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["_data", b"_data", "data", b"data"] # noqa: Y015
|
|
155
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
156
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["_data", b"_data", "data", b"data"] # noqa: Y015
|
|
157
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
158
|
+
_WhichOneofReturnType__data: _TypeAlias = _typing.Literal["data"] # noqa: Y015
|
|
159
|
+
_WhichOneofArgType__data: _TypeAlias = _typing.Literal["_data", b"_data"] # noqa: Y015
|
|
160
|
+
def WhichOneof(self, oneof_group: _WhichOneofArgType__data) -> _WhichOneofReturnType__data | None: ...
|
|
161
|
+
|
|
162
|
+
Global___StringTriggerValue: _TypeAlias = StringTriggerValue # noqa: Y015
|
|
163
|
+
|
|
164
|
+
@_typing.final
|
|
165
|
+
class FileURLsRequest(_message.Message):
|
|
166
|
+
"""NOTE: The FileURLsRequest, FileURLs, and FileURLsResponse message types
|
|
167
|
+
must remain stable as some external services rely on them to support
|
|
168
|
+
`st.file_uploader`. These types aren't completely set in stone, but changing
|
|
169
|
+
them requires a good amount of effort so should be avoided if possible.
|
|
170
|
+
"""
|
|
171
|
+
|
|
172
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
173
|
+
|
|
174
|
+
REQUEST_ID_FIELD_NUMBER: _builtins.int
|
|
175
|
+
FILE_NAMES_FIELD_NUMBER: _builtins.int
|
|
176
|
+
SESSION_ID_FIELD_NUMBER: _builtins.int
|
|
177
|
+
request_id: _builtins.str
|
|
178
|
+
session_id: _builtins.str
|
|
179
|
+
@_builtins.property
|
|
180
|
+
def file_names(self) -> _containers.RepeatedScalarFieldContainer[_builtins.str]: ...
|
|
181
|
+
def __init__(
|
|
182
|
+
self,
|
|
183
|
+
*,
|
|
184
|
+
request_id: _builtins.str = ...,
|
|
185
|
+
file_names: _abc.Iterable[_builtins.str] | None = ...,
|
|
186
|
+
session_id: _builtins.str = ...,
|
|
187
|
+
) -> None: ...
|
|
188
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["file_names", b"file_names", "request_id", b"request_id", "session_id", b"session_id"] # noqa: Y015
|
|
189
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
190
|
+
|
|
191
|
+
Global___FileURLsRequest: _TypeAlias = FileURLsRequest # noqa: Y015
|
|
192
|
+
|
|
193
|
+
@_typing.final
|
|
194
|
+
class FileURLs(_message.Message):
|
|
195
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
196
|
+
|
|
197
|
+
FILE_ID_FIELD_NUMBER: _builtins.int
|
|
198
|
+
UPLOAD_URL_FIELD_NUMBER: _builtins.int
|
|
199
|
+
DELETE_URL_FIELD_NUMBER: _builtins.int
|
|
200
|
+
file_id: _builtins.str
|
|
201
|
+
upload_url: _builtins.str
|
|
202
|
+
delete_url: _builtins.str
|
|
203
|
+
def __init__(
|
|
204
|
+
self,
|
|
205
|
+
*,
|
|
206
|
+
file_id: _builtins.str = ...,
|
|
207
|
+
upload_url: _builtins.str = ...,
|
|
208
|
+
delete_url: _builtins.str = ...,
|
|
209
|
+
) -> None: ...
|
|
210
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["delete_url", b"delete_url", "file_id", b"file_id", "upload_url", b"upload_url"] # noqa: Y015
|
|
211
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
212
|
+
|
|
213
|
+
Global___FileURLs: _TypeAlias = FileURLs # noqa: Y015
|
|
214
|
+
|
|
215
|
+
@_typing.final
|
|
216
|
+
class FileURLsResponse(_message.Message):
|
|
217
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
218
|
+
|
|
219
|
+
RESPONSE_ID_FIELD_NUMBER: _builtins.int
|
|
220
|
+
FILE_URLS_FIELD_NUMBER: _builtins.int
|
|
221
|
+
ERROR_MSG_FIELD_NUMBER: _builtins.int
|
|
222
|
+
response_id: _builtins.str
|
|
223
|
+
error_msg: _builtins.str
|
|
224
|
+
@_builtins.property
|
|
225
|
+
def file_urls(self) -> _containers.RepeatedCompositeFieldContainer[Global___FileURLs]: ...
|
|
226
|
+
def __init__(
|
|
227
|
+
self,
|
|
228
|
+
*,
|
|
229
|
+
response_id: _builtins.str = ...,
|
|
230
|
+
file_urls: _abc.Iterable[Global___FileURLs] | None = ...,
|
|
231
|
+
error_msg: _builtins.str = ...,
|
|
232
|
+
) -> None: ...
|
|
233
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["error_msg", b"error_msg", "file_urls", b"file_urls", "response_id", b"response_id"] # noqa: Y015
|
|
234
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
235
|
+
|
|
236
|
+
Global___FileURLsResponse: _TypeAlias = FileURLsResponse # noqa: Y015
|
|
237
|
+
|
|
238
|
+
@_typing.final
|
|
239
|
+
class UploadedFileInfo(_message.Message):
|
|
240
|
+
"""Information on a file uploaded via the file_uploader widget."""
|
|
241
|
+
|
|
242
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
243
|
+
|
|
244
|
+
NAME_FIELD_NUMBER: _builtins.int
|
|
245
|
+
SIZE_FIELD_NUMBER: _builtins.int
|
|
246
|
+
FILE_ID_FIELD_NUMBER: _builtins.int
|
|
247
|
+
FILE_URLS_FIELD_NUMBER: _builtins.int
|
|
248
|
+
name: _builtins.str
|
|
249
|
+
size: _builtins.int
|
|
250
|
+
"""The size of this file in bytes."""
|
|
251
|
+
file_id: _builtins.str
|
|
252
|
+
"""ID that can be used to retrieve a file."""
|
|
253
|
+
@_builtins.property
|
|
254
|
+
def file_urls(self) -> Global___FileURLs:
|
|
255
|
+
"""Metadata containing information about file_urls."""
|
|
256
|
+
|
|
257
|
+
def __init__(
|
|
258
|
+
self,
|
|
259
|
+
*,
|
|
260
|
+
name: _builtins.str = ...,
|
|
261
|
+
size: _builtins.int = ...,
|
|
262
|
+
file_id: _builtins.str = ...,
|
|
263
|
+
file_urls: Global___FileURLs | None = ...,
|
|
264
|
+
) -> None: ...
|
|
265
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["file_urls", b"file_urls"] # noqa: Y015
|
|
266
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
267
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["file_id", b"file_id", "file_urls", b"file_urls", "name", b"name", "size", b"size"] # noqa: Y015
|
|
268
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
269
|
+
|
|
270
|
+
Global___UploadedFileInfo: _TypeAlias = UploadedFileInfo # noqa: Y015
|
|
271
|
+
|
|
272
|
+
@_typing.final
|
|
273
|
+
class FileUploaderState(_message.Message):
|
|
274
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
275
|
+
|
|
276
|
+
UPLOADED_FILE_INFO_FIELD_NUMBER: _builtins.int
|
|
277
|
+
@_builtins.property
|
|
278
|
+
def uploaded_file_info(self) -> _containers.RepeatedCompositeFieldContainer[Global___UploadedFileInfo]: ...
|
|
279
|
+
def __init__(
|
|
280
|
+
self,
|
|
281
|
+
*,
|
|
282
|
+
uploaded_file_info: _abc.Iterable[Global___UploadedFileInfo] | None = ...,
|
|
283
|
+
) -> None: ...
|
|
284
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["uploaded_file_info", b"uploaded_file_info"] # noqa: Y015
|
|
285
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
286
|
+
|
|
287
|
+
Global___FileUploaderState: _TypeAlias = FileUploaderState # noqa: Y015
|
|
288
|
+
|
|
289
|
+
@_typing.final
|
|
290
|
+
class ChatInputValue(_message.Message):
|
|
291
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
292
|
+
|
|
293
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
294
|
+
FILE_UPLOADER_STATE_FIELD_NUMBER: _builtins.int
|
|
295
|
+
AUDIO_FILE_INFO_FIELD_NUMBER: _builtins.int
|
|
296
|
+
data: _builtins.str
|
|
297
|
+
@_builtins.property
|
|
298
|
+
def file_uploader_state(self) -> Global___FileUploaderState: ...
|
|
299
|
+
@_builtins.property
|
|
300
|
+
def audio_file_info(self) -> Global___UploadedFileInfo: ...
|
|
301
|
+
def __init__(
|
|
302
|
+
self,
|
|
303
|
+
*,
|
|
304
|
+
data: _builtins.str | None = ...,
|
|
305
|
+
file_uploader_state: Global___FileUploaderState | None = ...,
|
|
306
|
+
audio_file_info: Global___UploadedFileInfo | None = ...,
|
|
307
|
+
) -> None: ...
|
|
308
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["_audio_file_info", b"_audio_file_info", "_data", b"_data", "_file_uploader_state", b"_file_uploader_state", "audio_file_info", b"audio_file_info", "data", b"data", "file_uploader_state", b"file_uploader_state"] # noqa: Y015
|
|
309
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
310
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["_audio_file_info", b"_audio_file_info", "_data", b"_data", "_file_uploader_state", b"_file_uploader_state", "audio_file_info", b"audio_file_info", "data", b"data", "file_uploader_state", b"file_uploader_state"] # noqa: Y015
|
|
311
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
312
|
+
_WhichOneofReturnType__audio_file_info: _TypeAlias = _typing.Literal["audio_file_info"] # noqa: Y015
|
|
313
|
+
_WhichOneofArgType__audio_file_info: _TypeAlias = _typing.Literal["_audio_file_info", b"_audio_file_info"] # noqa: Y015
|
|
314
|
+
_WhichOneofReturnType__data: _TypeAlias = _typing.Literal["data"] # noqa: Y015
|
|
315
|
+
_WhichOneofArgType__data: _TypeAlias = _typing.Literal["_data", b"_data"] # noqa: Y015
|
|
316
|
+
_WhichOneofReturnType__file_uploader_state: _TypeAlias = _typing.Literal["file_uploader_state"] # noqa: Y015
|
|
317
|
+
_WhichOneofArgType__file_uploader_state: _TypeAlias = _typing.Literal["_file_uploader_state", b"_file_uploader_state"] # noqa: Y015
|
|
318
|
+
@_typing.overload
|
|
319
|
+
def WhichOneof(self, oneof_group: _WhichOneofArgType__audio_file_info) -> _WhichOneofReturnType__audio_file_info | None: ...
|
|
320
|
+
@_typing.overload
|
|
321
|
+
def WhichOneof(self, oneof_group: _WhichOneofArgType__data) -> _WhichOneofReturnType__data | None: ...
|
|
322
|
+
@_typing.overload
|
|
323
|
+
def WhichOneof(self, oneof_group: _WhichOneofArgType__file_uploader_state) -> _WhichOneofReturnType__file_uploader_state | None: ...
|
|
324
|
+
|
|
325
|
+
Global___ChatInputValue: _TypeAlias = ChatInputValue # noqa: Y015
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: streamlit/proto/Components.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n streamlit/proto/Components.proto\"\xb1\x01\n\x11\x43omponentInstance\x12\n\n\x02id\x18\x01 \x01(\t\x12\x11\n\tjson_args\x18\x02 \x01(\t\x12!\n\x0cspecial_args\x18\x03 \x03(\x0b\x32\x0b.SpecialArg\x12\x16\n\x0e\x63omponent_name\x18\x04 \x01(\t\x12\x0b\n\x03url\x18\x05 \x01(\t\x12\x0f\n\x07\x66orm_id\x18\x06 \x01(\t\x12\x16\n\ttab_index\x18\x07 \x01(\x05H\x00\x88\x01\x01\x42\x0c\n\n_tab_index\"_\n\nSpecialArg\x12\x0b\n\x03key\x18\x01 \x01(\t\x12*\n\x0f\x61rrow_dataframe\x18\x02 \x01(\x0b\x32\x0f.ArrowDataframeH\x00\x12\x0f\n\x05\x62ytes\x18\x03 \x01(\x0cH\x00\x42\x07\n\x05value\"J\n\x0e\x41rrowDataframe\x12\x19\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x0b.ArrowTable\x12\x0e\n\x06height\x18\x02 \x01(\r\x12\r\n\x05width\x18\x03 \x01(\r\"]\n\nArrowTable\x12\x0c\n\x04\x64\x61ta\x18\x01 \x01(\x0c\x12\r\n\x05index\x18\x02 \x01(\x0c\x12\x0f\n\x07\x63olumns\x18\x03 \x01(\x0c\x12!\n\x06styler\x18\x05 \x01(\x0b\x32\x11.ArrowTableStyler\"Y\n\x10\x41rrowTableStyler\x12\x0c\n\x04uuid\x18\x01 \x01(\t\x12\x0f\n\x07\x63\x61ption\x18\x02 \x01(\t\x12\x0e\n\x06styles\x18\x03 \x01(\t\x12\x16\n\x0e\x64isplay_values\x18\x04 \x01(\x0c\x62\x06proto3')
|
|
17
|
+
|
|
18
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
19
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.Components_pb2', globals())
|
|
20
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
21
|
+
|
|
22
|
+
DESCRIPTOR._options = None
|
|
23
|
+
_COMPONENTINSTANCE._serialized_start=37
|
|
24
|
+
_COMPONENTINSTANCE._serialized_end=214
|
|
25
|
+
_SPECIALARG._serialized_start=216
|
|
26
|
+
_SPECIALARG._serialized_end=311
|
|
27
|
+
_ARROWDATAFRAME._serialized_start=313
|
|
28
|
+
_ARROWDATAFRAME._serialized_end=387
|
|
29
|
+
_ARROWTABLE._serialized_start=389
|
|
30
|
+
_ARROWTABLE._serialized_end=482
|
|
31
|
+
_ARROWTABLESTYLER._serialized_start=484
|
|
32
|
+
_ARROWTABLESTYLER._serialized_end=573
|
|
33
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
"""
|
|
2
|
+
@generated by mypy-protobuf. Do not edit manually!
|
|
3
|
+
isort:skip_file
|
|
4
|
+
*!
|
|
5
|
+
Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026)
|
|
6
|
+
|
|
7
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
you may not use this file except in compliance with the License.
|
|
9
|
+
You may obtain a copy of the License at
|
|
10
|
+
|
|
11
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
|
|
13
|
+
Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
See the License for the specific language governing permissions and
|
|
17
|
+
limitations under the License.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from collections import abc as _abc
|
|
21
|
+
from google.protobuf import descriptor as _descriptor
|
|
22
|
+
from google.protobuf import message as _message
|
|
23
|
+
from google.protobuf.internal import containers as _containers
|
|
24
|
+
import builtins as _builtins
|
|
25
|
+
import sys
|
|
26
|
+
import typing as _typing
|
|
27
|
+
|
|
28
|
+
if sys.version_info >= (3, 10):
|
|
29
|
+
from typing import TypeAlias as _TypeAlias
|
|
30
|
+
else:
|
|
31
|
+
from typing_extensions import TypeAlias as _TypeAlias
|
|
32
|
+
|
|
33
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
34
|
+
|
|
35
|
+
@_typing.final
|
|
36
|
+
class ComponentInstance(_message.Message):
|
|
37
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
38
|
+
|
|
39
|
+
ID_FIELD_NUMBER: _builtins.int
|
|
40
|
+
JSON_ARGS_FIELD_NUMBER: _builtins.int
|
|
41
|
+
SPECIAL_ARGS_FIELD_NUMBER: _builtins.int
|
|
42
|
+
COMPONENT_NAME_FIELD_NUMBER: _builtins.int
|
|
43
|
+
URL_FIELD_NUMBER: _builtins.int
|
|
44
|
+
FORM_ID_FIELD_NUMBER: _builtins.int
|
|
45
|
+
TAB_INDEX_FIELD_NUMBER: _builtins.int
|
|
46
|
+
id: _builtins.str
|
|
47
|
+
"""The instance's "widget ID", used to uniquely identify it."""
|
|
48
|
+
json_args: _builtins.str
|
|
49
|
+
"""Argument dictionary, for JSON-serializable args."""
|
|
50
|
+
component_name: _builtins.str
|
|
51
|
+
"""The component type's unique name."""
|
|
52
|
+
url: _builtins.str
|
|
53
|
+
"""Optional URL to load the component from. By default this is not set,
|
|
54
|
+
but while testing, a user can e.g. point this to a local node server
|
|
55
|
+
that they're developing their component in.
|
|
56
|
+
"""
|
|
57
|
+
form_id: _builtins.str
|
|
58
|
+
tab_index: _builtins.int
|
|
59
|
+
@_builtins.property
|
|
60
|
+
def special_args(self) -> _containers.RepeatedCompositeFieldContainer[Global___SpecialArg]:
|
|
61
|
+
"""Additional, non-JSON args. These require special processing
|
|
62
|
+
on the other end.
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
def __init__(
|
|
66
|
+
self,
|
|
67
|
+
*,
|
|
68
|
+
id: _builtins.str = ...,
|
|
69
|
+
json_args: _builtins.str = ...,
|
|
70
|
+
special_args: _abc.Iterable[Global___SpecialArg] | None = ...,
|
|
71
|
+
component_name: _builtins.str = ...,
|
|
72
|
+
url: _builtins.str = ...,
|
|
73
|
+
form_id: _builtins.str = ...,
|
|
74
|
+
tab_index: _builtins.int | None = ...,
|
|
75
|
+
) -> None: ...
|
|
76
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["_tab_index", b"_tab_index", "tab_index", b"tab_index"] # noqa: Y015
|
|
77
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
78
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["_tab_index", b"_tab_index", "component_name", b"component_name", "form_id", b"form_id", "id", b"id", "json_args", b"json_args", "special_args", b"special_args", "tab_index", b"tab_index", "url", b"url"] # noqa: Y015
|
|
79
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
80
|
+
_WhichOneofReturnType__tab_index: _TypeAlias = _typing.Literal["tab_index"] # noqa: Y015
|
|
81
|
+
_WhichOneofArgType__tab_index: _TypeAlias = _typing.Literal["_tab_index", b"_tab_index"] # noqa: Y015
|
|
82
|
+
def WhichOneof(self, oneof_group: _WhichOneofArgType__tab_index) -> _WhichOneofReturnType__tab_index | None: ...
|
|
83
|
+
|
|
84
|
+
Global___ComponentInstance: _TypeAlias = ComponentInstance # noqa: Y015
|
|
85
|
+
|
|
86
|
+
@_typing.final
|
|
87
|
+
class SpecialArg(_message.Message):
|
|
88
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
89
|
+
|
|
90
|
+
KEY_FIELD_NUMBER: _builtins.int
|
|
91
|
+
ARROW_DATAFRAME_FIELD_NUMBER: _builtins.int
|
|
92
|
+
BYTES_FIELD_NUMBER: _builtins.int
|
|
93
|
+
key: _builtins.str
|
|
94
|
+
bytes: _builtins.bytes
|
|
95
|
+
@_builtins.property
|
|
96
|
+
def arrow_dataframe(self) -> Global___ArrowDataframe: ...
|
|
97
|
+
def __init__(
|
|
98
|
+
self,
|
|
99
|
+
*,
|
|
100
|
+
key: _builtins.str = ...,
|
|
101
|
+
arrow_dataframe: Global___ArrowDataframe | None = ...,
|
|
102
|
+
bytes: _builtins.bytes = ...,
|
|
103
|
+
) -> None: ...
|
|
104
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["arrow_dataframe", b"arrow_dataframe", "bytes", b"bytes", "value", b"value"] # noqa: Y015
|
|
105
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
106
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["arrow_dataframe", b"arrow_dataframe", "bytes", b"bytes", "key", b"key", "value", b"value"] # noqa: Y015
|
|
107
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
108
|
+
_WhichOneofReturnType_value: _TypeAlias = _typing.Literal["arrow_dataframe", "bytes"] # noqa: Y015
|
|
109
|
+
_WhichOneofArgType_value: _TypeAlias = _typing.Literal["value", b"value"] # noqa: Y015
|
|
110
|
+
def WhichOneof(self, oneof_group: _WhichOneofArgType_value) -> _WhichOneofReturnType_value | None: ...
|
|
111
|
+
|
|
112
|
+
Global___SpecialArg: _TypeAlias = SpecialArg # noqa: Y015
|
|
113
|
+
|
|
114
|
+
@_typing.final
|
|
115
|
+
class ArrowDataframe(_message.Message):
|
|
116
|
+
"""Components uses Apache Arrow for dataframe serialization.
|
|
117
|
+
This is distinct from `Arrow.proto`: Components was created before
|
|
118
|
+
Streamlit supported Arrow for internal dataframe serialization, and the
|
|
119
|
+
two implementations currently use different logic + data structures.
|
|
120
|
+
"""
|
|
121
|
+
|
|
122
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
123
|
+
|
|
124
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
125
|
+
HEIGHT_FIELD_NUMBER: _builtins.int
|
|
126
|
+
WIDTH_FIELD_NUMBER: _builtins.int
|
|
127
|
+
height: _builtins.int
|
|
128
|
+
width: _builtins.int
|
|
129
|
+
@_builtins.property
|
|
130
|
+
def data(self) -> Global___ArrowTable: ...
|
|
131
|
+
def __init__(
|
|
132
|
+
self,
|
|
133
|
+
*,
|
|
134
|
+
data: Global___ArrowTable | None = ...,
|
|
135
|
+
height: _builtins.int = ...,
|
|
136
|
+
width: _builtins.int = ...,
|
|
137
|
+
) -> None: ...
|
|
138
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["data", b"data"] # noqa: Y015
|
|
139
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
140
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["data", b"data", "height", b"height", "width", b"width"] # noqa: Y015
|
|
141
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
142
|
+
|
|
143
|
+
Global___ArrowDataframe: _TypeAlias = ArrowDataframe # noqa: Y015
|
|
144
|
+
|
|
145
|
+
@_typing.final
|
|
146
|
+
class ArrowTable(_message.Message):
|
|
147
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
148
|
+
|
|
149
|
+
DATA_FIELD_NUMBER: _builtins.int
|
|
150
|
+
INDEX_FIELD_NUMBER: _builtins.int
|
|
151
|
+
COLUMNS_FIELD_NUMBER: _builtins.int
|
|
152
|
+
STYLER_FIELD_NUMBER: _builtins.int
|
|
153
|
+
data: _builtins.bytes
|
|
154
|
+
index: _builtins.bytes
|
|
155
|
+
columns: _builtins.bytes
|
|
156
|
+
@_builtins.property
|
|
157
|
+
def styler(self) -> Global___ArrowTableStyler: ...
|
|
158
|
+
def __init__(
|
|
159
|
+
self,
|
|
160
|
+
*,
|
|
161
|
+
data: _builtins.bytes = ...,
|
|
162
|
+
index: _builtins.bytes = ...,
|
|
163
|
+
columns: _builtins.bytes = ...,
|
|
164
|
+
styler: Global___ArrowTableStyler | None = ...,
|
|
165
|
+
) -> None: ...
|
|
166
|
+
_HasFieldArgType: _TypeAlias = _typing.Literal["styler", b"styler"] # noqa: Y015
|
|
167
|
+
def HasField(self, field_name: _HasFieldArgType) -> _builtins.bool: ...
|
|
168
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["columns", b"columns", "data", b"data", "index", b"index", "styler", b"styler"] # noqa: Y015
|
|
169
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
170
|
+
|
|
171
|
+
Global___ArrowTable: _TypeAlias = ArrowTable # noqa: Y015
|
|
172
|
+
|
|
173
|
+
@_typing.final
|
|
174
|
+
class ArrowTableStyler(_message.Message):
|
|
175
|
+
DESCRIPTOR: _descriptor.Descriptor
|
|
176
|
+
|
|
177
|
+
UUID_FIELD_NUMBER: _builtins.int
|
|
178
|
+
CAPTION_FIELD_NUMBER: _builtins.int
|
|
179
|
+
STYLES_FIELD_NUMBER: _builtins.int
|
|
180
|
+
DISPLAY_VALUES_FIELD_NUMBER: _builtins.int
|
|
181
|
+
uuid: _builtins.str
|
|
182
|
+
caption: _builtins.str
|
|
183
|
+
styles: _builtins.str
|
|
184
|
+
display_values: _builtins.bytes
|
|
185
|
+
def __init__(
|
|
186
|
+
self,
|
|
187
|
+
*,
|
|
188
|
+
uuid: _builtins.str = ...,
|
|
189
|
+
caption: _builtins.str = ...,
|
|
190
|
+
styles: _builtins.str = ...,
|
|
191
|
+
display_values: _builtins.bytes = ...,
|
|
192
|
+
) -> None: ...
|
|
193
|
+
_ClearFieldArgType: _TypeAlias = _typing.Literal["caption", b"caption", "display_values", b"display_values", "styles", b"styles", "uuid", b"uuid"] # noqa: Y015
|
|
194
|
+
def ClearField(self, field_name: _ClearFieldArgType) -> None: ...
|
|
195
|
+
|
|
196
|
+
Global___ArrowTableStyler: _TypeAlias = ArrowTableStyler # noqa: Y015
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# source: streamlit/proto/Dataframe.proto
|
|
4
|
+
"""Generated protocol buffer code."""
|
|
5
|
+
from google.protobuf.internal import builder as _builder
|
|
6
|
+
from google.protobuf import descriptor as _descriptor
|
|
7
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
8
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
9
|
+
# @@protoc_insertion_point(imports)
|
|
10
|
+
|
|
11
|
+
_sym_db = _symbol_database.Default()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
from streamlit.proto import ArrowData_pb2 as streamlit_dot_proto_dot_ArrowData__pb2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1fstreamlit/proto/Dataframe.proto\x1a\x1fstreamlit/proto/ArrowData.proto\"\xfe\x03\n\tDataframe\x12\x1e\n\narrow_data\x18\x01 \x01(\x0b\x32\n.ArrowData\x12\n\n\x02id\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x01(\t\x12,\n\x0c\x65\x64iting_mode\x18\x04 \x01(\x0e\x32\x16.Dataframe.EditingMode\x12\x10\n\x08\x64isabled\x18\x05 \x01(\x08\x12\x0f\n\x07\x66orm_id\x18\x06 \x01(\t\x12\x14\n\x0c\x63olumn_order\x18\x07 \x03(\t\x12\x30\n\x0eselection_mode\x18\x08 \x03(\x0e\x32\x18.Dataframe.SelectionMode\x12\x17\n\nrow_height\x18\t \x01(\rH\x00\x88\x01\x01\x12\x18\n\x0bplaceholder\x18\n \x01(\tH\x01\x88\x01\x01\"S\n\x0b\x45\x64itingMode\x12\r\n\tREAD_ONLY\x10\x00\x12\t\n\x05\x46IXED\x10\x01\x12\x0b\n\x07\x44YNAMIC\x10\x02\x12\x0c\n\x08\x41\x44\x44_ONLY\x10\x03\x12\x0f\n\x0b\x44\x45LETE_ONLY\x10\x04\"t\n\rSelectionMode\x12\x0e\n\nSINGLE_ROW\x10\x00\x12\r\n\tMULTI_ROW\x10\x01\x12\x11\n\rSINGLE_COLUMN\x10\x02\x12\x10\n\x0cMULTI_COLUMN\x10\x03\x12\x0f\n\x0bSINGLE_CELL\x10\x04\x12\x0e\n\nMULTI_CELL\x10\x05\x42\r\n\x0b_row_heightB\x0e\n\x0c_placeholderb\x06proto3')
|
|
18
|
+
|
|
19
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, globals())
|
|
20
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.Dataframe_pb2', globals())
|
|
21
|
+
if _descriptor._USE_C_DESCRIPTORS == False:
|
|
22
|
+
|
|
23
|
+
DESCRIPTOR._options = None
|
|
24
|
+
_DATAFRAME._serialized_start=69
|
|
25
|
+
_DATAFRAME._serialized_end=579
|
|
26
|
+
_DATAFRAME_EDITINGMODE._serialized_start=347
|
|
27
|
+
_DATAFRAME_EDITINGMODE._serialized_end=430
|
|
28
|
+
_DATAFRAME_SELECTIONMODE._serialized_start=432
|
|
29
|
+
_DATAFRAME_SELECTIONMODE._serialized_end=548
|
|
30
|
+
# @@protoc_insertion_point(module_scope)
|