streamlit-nightly 1.35.1.dev20240601__py2.py3-none-any.whl → 1.35.1.dev20240604__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- streamlit/commands/navigation.py +8 -5
- streamlit/elements/deck_gl_json_chart.py +1 -1
- streamlit/elements/form.py +8 -3
- streamlit/elements/layouts.py +11 -3
- streamlit/elements/lib/policies.py +28 -2
- streamlit/elements/map.py +6 -6
- streamlit/elements/plotly_chart.py +3 -0
- streamlit/elements/pyplot.py +6 -5
- streamlit/elements/vega_charts.py +26 -16
- streamlit/elements/widgets/button.py +28 -11
- streamlit/elements/widgets/camera_input.py +2 -0
- streamlit/elements/widgets/chat.py +7 -6
- streamlit/elements/widgets/checkbox.py +2 -0
- streamlit/elements/widgets/color_picker.py +2 -0
- streamlit/elements/widgets/data_editor.py +2 -2
- streamlit/elements/widgets/file_uploader.py +2 -0
- streamlit/elements/widgets/multiselect.py +2 -0
- streamlit/elements/widgets/number_input.py +2 -0
- streamlit/elements/widgets/radio.py +2 -0
- streamlit/elements/widgets/selectbox.py +2 -0
- streamlit/elements/widgets/slider.py +2 -0
- streamlit/elements/widgets/text_widgets.py +4 -0
- streamlit/elements/widgets/time_widgets.py +4 -0
- streamlit/elements/write.py +3 -0
- streamlit/hello/Hello.py +22 -28
- streamlit/hello/streamlit_app.py +37 -0
- streamlit/proto/Alert_pb2.py +12 -11
- streamlit/proto/Alert_pb2.pyi +4 -2
- streamlit/proto/AppPage_pb2.py +10 -9
- streamlit/proto/AppPage_pb2.pyi +4 -7
- streamlit/proto/ArrowNamedDataSet_pb2.py +10 -9
- streamlit/proto/ArrowNamedDataSet_pb2.pyi +6 -8
- streamlit/proto/ArrowVegaLiteChart_pb2.py +10 -9
- streamlit/proto/ArrowVegaLiteChart_pb2.pyi +16 -16
- streamlit/proto/Arrow_pb2.py +16 -15
- streamlit/proto/Arrow_pb2.pyi +14 -8
- streamlit/proto/Audio_pb2.py +10 -9
- streamlit/proto/Audio_pb2.pyi +4 -7
- streamlit/proto/AutoRerun_pb2.py +9 -8
- streamlit/proto/AutoRerun_pb2.pyi +4 -7
- streamlit/proto/BackMsg_pb2.py +10 -9
- streamlit/proto/BackMsg_pb2.pyi +18 -19
- streamlit/proto/Balloons_pb2.py +10 -9
- streamlit/proto/Balloons_pb2.pyi +4 -7
- streamlit/proto/Block_pb2.py +34 -33
- streamlit/proto/Block_pb2.pyi +31 -19
- streamlit/proto/BokehChart_pb2.py +10 -9
- streamlit/proto/BokehChart_pb2.pyi +4 -7
- streamlit/proto/Button_pb2.py +10 -9
- streamlit/proto/Button_pb2.pyi +4 -7
- streamlit/proto/CameraInput_pb2.py +10 -9
- streamlit/proto/CameraInput_pb2.pyi +5 -8
- streamlit/proto/ChatInput_pb2.py +12 -11
- streamlit/proto/ChatInput_pb2.pyi +4 -2
- streamlit/proto/Checkbox_pb2.py +12 -11
- streamlit/proto/Checkbox_pb2.pyi +6 -4
- streamlit/proto/ClientState_pb2.py +10 -9
- streamlit/proto/ClientState_pb2.pyi +7 -10
- streamlit/proto/Code_pb2.py +10 -9
- streamlit/proto/Code_pb2.pyi +4 -7
- streamlit/proto/ColorPicker_pb2.py +10 -9
- streamlit/proto/ColorPicker_pb2.pyi +5 -8
- streamlit/proto/Common_pb2.py +32 -31
- streamlit/proto/Common_pb2.pyi +32 -23
- streamlit/proto/Components_pb2.py +18 -17
- streamlit/proto/Components_pb2.pyi +25 -23
- streamlit/proto/DataFrame_pb2.py +38 -37
- streamlit/proto/DataFrame_pb2.pyi +52 -33
- streamlit/proto/DateInput_pb2.py +10 -9
- streamlit/proto/DateInput_pb2.pyi +10 -13
- streamlit/proto/DeckGlJsonChart_pb2.py +10 -9
- streamlit/proto/DeckGlJsonChart_pb2.pyi +4 -7
- streamlit/proto/Delta_pb2.py +10 -9
- streamlit/proto/Delta_pb2.pyi +10 -10
- streamlit/proto/DocString_pb2.py +12 -11
- streamlit/proto/DocString_pb2.pyi +9 -10
- streamlit/proto/DownloadButton_pb2.py +10 -9
- streamlit/proto/DownloadButton_pb2.pyi +4 -7
- streamlit/proto/Element_pb2.py +10 -9
- streamlit/proto/Element_pb2.pyi +10 -9
- streamlit/proto/Empty_pb2.py +10 -9
- streamlit/proto/Empty_pb2.pyi +3 -0
- streamlit/proto/Exception_pb2.py +10 -9
- streamlit/proto/Exception_pb2.pyi +8 -10
- streamlit/proto/Favicon_pb2.py +10 -9
- streamlit/proto/Favicon_pb2.pyi +4 -7
- streamlit/proto/FileUploader_pb2.py +10 -9
- streamlit/proto/FileUploader_pb2.pyi +9 -11
- streamlit/proto/ForwardMsg_pb2.py +16 -15
- streamlit/proto/ForwardMsg_pb2.pyi +36 -24
- streamlit/proto/GitInfo_pb2.py +12 -11
- streamlit/proto/GitInfo_pb2.pyi +5 -3
- streamlit/proto/GraphVizChart_pb2.py +10 -9
- streamlit/proto/GraphVizChart_pb2.pyi +4 -7
- streamlit/proto/Heading_pb2.py +10 -9
- streamlit/proto/Heading_pb2.pyi +4 -7
- streamlit/proto/Html_pb2.py +10 -9
- streamlit/proto/Html_pb2.pyi +4 -7
- streamlit/proto/IFrame_pb2.py +10 -9
- streamlit/proto/IFrame_pb2.pyi +6 -9
- streamlit/proto/Image_pb2.py +12 -11
- streamlit/proto/Image_pb2.pyi +8 -10
- streamlit/proto/Json_pb2.py +10 -9
- streamlit/proto/Json_pb2.pyi +4 -7
- streamlit/proto/LabelVisibilityMessage_pb2.py +12 -11
- streamlit/proto/LabelVisibilityMessage_pb2.pyi +4 -2
- streamlit/proto/LinkButton_pb2.py +10 -9
- streamlit/proto/LinkButton_pb2.pyi +4 -7
- streamlit/proto/Logo_pb2.py +10 -9
- streamlit/proto/Logo_pb2.pyi +4 -7
- streamlit/proto/Markdown_pb2.py +12 -11
- streamlit/proto/Markdown_pb2.pyi +4 -2
- streamlit/proto/Metric_pb2.py +14 -13
- streamlit/proto/Metric_pb2.pyi +6 -4
- streamlit/proto/MultiSelect_pb2.py +10 -9
- streamlit/proto/MultiSelect_pb2.pyi +11 -14
- streamlit/proto/NamedDataSet_pb2.py +10 -9
- streamlit/proto/NamedDataSet_pb2.pyi +6 -8
- streamlit/proto/Navigation_pb2.py +12 -11
- streamlit/proto/Navigation_pb2.pyi +7 -5
- streamlit/proto/NewSession_pb2.py +32 -31
- streamlit/proto/NewSession_pb2.pyi +52 -36
- streamlit/proto/NumberInput_pb2.py +12 -11
- streamlit/proto/NumberInput_pb2.pyi +8 -6
- streamlit/proto/PageConfig_pb2.py +16 -15
- streamlit/proto/PageConfig_pb2.pyi +8 -5
- streamlit/proto/PageInfo_pb2.py +10 -9
- streamlit/proto/PageInfo_pb2.pyi +4 -7
- streamlit/proto/PageLink_pb2.py +10 -9
- streamlit/proto/PageLink_pb2.pyi +6 -9
- streamlit/proto/PageNotFound_pb2.py +10 -9
- streamlit/proto/PageNotFound_pb2.pyi +4 -7
- streamlit/proto/PageProfile_pb2.py +14 -13
- streamlit/proto/PageProfile_pb2.pyi +15 -16
- streamlit/proto/PagesChanged_pb2.py +10 -9
- streamlit/proto/PagesChanged_pb2.pyi +4 -7
- streamlit/proto/ParentMessage_pb2.py +10 -9
- streamlit/proto/ParentMessage_pb2.pyi +4 -7
- streamlit/proto/PlotlyChart_pb2.py +14 -13
- streamlit/proto/PlotlyChart_pb2.pyi +13 -8
- streamlit/proto/Progress_pb2.py +10 -9
- streamlit/proto/Progress_pb2.pyi +4 -7
- streamlit/proto/Radio_pb2.py +10 -9
- streamlit/proto/Radio_pb2.pyi +8 -12
- streamlit/proto/RootContainer_pb2.py +10 -9
- streamlit/proto/RootContainer_pb2.pyi +2 -1
- streamlit/proto/Selectbox_pb2.py +10 -9
- streamlit/proto/Selectbox_pb2.pyi +9 -13
- streamlit/proto/SessionEvent_pb2.py +10 -9
- streamlit/proto/SessionEvent_pb2.pyi +7 -9
- streamlit/proto/SessionStatus_pb2.py +10 -9
- streamlit/proto/SessionStatus_pb2.pyi +4 -7
- streamlit/proto/Skeleton_pb2.py +12 -11
- streamlit/proto/Skeleton_pb2.pyi +6 -4
- streamlit/proto/Slider_pb2.py +14 -13
- streamlit/proto/Slider_pb2.pyi +12 -10
- streamlit/proto/Snow_pb2.py +10 -9
- streamlit/proto/Snow_pb2.pyi +4 -7
- streamlit/proto/Spinner_pb2.py +10 -9
- streamlit/proto/Spinner_pb2.pyi +4 -7
- streamlit/proto/TextArea_pb2.py +10 -9
- streamlit/proto/TextArea_pb2.pyi +6 -10
- streamlit/proto/TextInput_pb2.py +12 -11
- streamlit/proto/TextInput_pb2.pyi +7 -5
- streamlit/proto/Text_pb2.py +10 -9
- streamlit/proto/Text_pb2.pyi +4 -7
- streamlit/proto/TimeInput_pb2.py +10 -9
- streamlit/proto/TimeInput_pb2.pyi +7 -11
- streamlit/proto/Toast_pb2.py +10 -9
- streamlit/proto/Toast_pb2.pyi +4 -7
- streamlit/proto/VegaLiteChart_pb2.py +10 -9
- streamlit/proto/VegaLiteChart_pb2.pyi +9 -10
- streamlit/proto/Video_pb2.py +14 -13
- streamlit/proto/Video_pb2.pyi +10 -6
- streamlit/proto/WidgetStates_pb2.py +12 -11
- streamlit/proto/WidgetStates_pb2.pyi +11 -12
- streamlit/proto/openmetrics_data_model_pb2.py +42 -41
- streamlit/proto/openmetrics_data_model_pb2.pyi +64 -31
- streamlit/runtime/caching/cached_message_replay.py +14 -29
- streamlit/runtime/fragment.py +3 -0
- streamlit/runtime/scriptrunner/script_run_context.py +1 -0
- streamlit/runtime/secrets.py +14 -0
- streamlit/static/asset-manifest.json +19 -19
- streamlit/static/index.html +1 -1
- streamlit/static/static/js/{1074.73973756.chunk.js → 1074.a92bc15f.chunk.js} +1 -1
- streamlit/static/static/js/1307.36b77087.chunk.js +1 -0
- streamlit/static/static/js/1451.229b62c4.chunk.js +1 -0
- streamlit/static/static/js/2469.5a75ba8e.chunk.js +1 -0
- streamlit/static/static/js/3599.565b1eba.chunk.js +1 -0
- streamlit/static/static/js/{4477.1bd49702.chunk.js → 4477.87935ac8.chunk.js} +1 -1
- streamlit/static/static/js/4500.be0eb305.chunk.js +1 -0
- streamlit/static/static/js/4666.a9344a3a.chunk.js +1 -0
- streamlit/static/static/js/5441.87f335e6.chunk.js +1 -0
- streamlit/static/static/js/6013.f6083314.chunk.js +1 -0
- streamlit/static/static/js/{6718.802da17e.chunk.js → 6718.2e6586ef.chunk.js} +1 -1
- streamlit/static/static/js/7175.8f4014ec.chunk.js +1 -0
- streamlit/static/static/js/7602.a20a999b.chunk.js +1 -0
- streamlit/static/static/js/8148.1b2c085e.chunk.js +1 -0
- streamlit/static/static/js/8427.59805a7f.chunk.js +1 -0
- streamlit/static/static/js/{8492.0d93bd08.chunk.js → 8492.8ad745d1.chunk.js} +1 -1
- streamlit/static/static/js/8691.cb9c04cf.chunk.js +1 -0
- streamlit/static/static/js/main.ea823277.js +2 -0
- streamlit/type_util.py +7 -0
- streamlit/web/cli.py +2 -2
- streamlit/web/server/server.py +2 -2
- {streamlit_nightly-1.35.1.dev20240601.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/METADATA +5 -5
- {streamlit_nightly-1.35.1.dev20240601.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/RECORD +216 -215
- streamlit/static/static/js/1307.0f0cca93.chunk.js +0 -1
- streamlit/static/static/js/1451.3b0a3e31.chunk.js +0 -1
- streamlit/static/static/js/2469.09ea79bb.chunk.js +0 -1
- streamlit/static/static/js/4500.b6f348d1.chunk.js +0 -1
- streamlit/static/static/js/4666.c4b22a63.chunk.js +0 -1
- streamlit/static/static/js/5379.f08eddd1.chunk.js +0 -1
- streamlit/static/static/js/5441.1b94928f.chunk.js +0 -1
- streamlit/static/static/js/6013.4ba2d616.chunk.js +0 -1
- streamlit/static/static/js/7175.583ff733.chunk.js +0 -1
- streamlit/static/static/js/7602.e8abc06b.chunk.js +0 -1
- streamlit/static/static/js/8148.293984e0.chunk.js +0 -1
- streamlit/static/static/js/8427.bd0a7cf3.chunk.js +0 -1
- streamlit/static/static/js/8691.4211c305.chunk.js +0 -1
- streamlit/static/static/js/main.707da454.js +0 -2
- /streamlit/hello/{pages/0_Animation_Demo.py → Animation_Demo.py} +0 -0
- /streamlit/hello/{pages/3_DataFrame_Demo.py → Dataframe_Demo.py} +0 -0
- /streamlit/hello/{pages/2_Mapping_Demo.py → Mapping_Demo.py} +0 -0
- /streamlit/hello/{pages/1_Plotting_Demo.py → Plotting_Demo.py} +0 -0
- /streamlit/static/static/js/{main.707da454.js.LICENSE.txt → main.ea823277.js.LICENSE.txt} +0 -0
- {streamlit_nightly-1.35.1.dev20240601.data → streamlit_nightly-1.35.1.dev20240604.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.35.1.dev20240601.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.35.1.dev20240601.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.35.1.dev20240601.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/top_level.txt +0 -0
@@ -1,11 +1,12 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
3
|
# source: streamlit/proto/VegaLiteChart.proto
|
4
|
+
# Protobuf Python Version: 5.26.1
|
4
5
|
"""Generated protocol buffer code."""
|
5
|
-
from google.protobuf.internal import builder as _builder
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
8
|
from google.protobuf import symbol_database as _symbol_database
|
9
|
+
from google.protobuf.internal import builder as _builder
|
9
10
|
# @@protoc_insertion_point(imports)
|
10
11
|
|
11
12
|
_sym_db = _symbol_database.Default()
|
@@ -17,12 +18,12 @@ from streamlit.proto import NamedDataSet_pb2 as streamlit_dot_proto_dot_NamedDat
|
|
17
18
|
|
18
19
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n#streamlit/proto/VegaLiteChart.proto\x1a\x1fstreamlit/proto/DataFrame.proto\x1a\"streamlit/proto/NamedDataSet.proto\"{\n\rVegaLiteChart\x12\x0c\n\x04spec\x18\x01 \x01(\t\x12\x18\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\n.DataFrame\x12\x1f\n\x08\x64\x61tasets\x18\x04 \x03(\x0b\x32\r.NamedDataSet\x12\x1b\n\x13use_container_width\x18\x05 \x01(\x08J\x04\x08\x03\x10\x04\x42\x32\n\x1c\x63om.snowflake.apps.streamlitB\x12VegaLiteChartProtob\x06proto3')
|
19
20
|
|
20
|
-
|
21
|
-
_builder.
|
22
|
-
|
23
|
-
|
24
|
-
DESCRIPTOR.
|
25
|
-
DESCRIPTOR._serialized_options = b'\n\034com.snowflake.apps.streamlitB\022VegaLiteChartProto'
|
26
|
-
_VEGALITECHART._serialized_start=108
|
27
|
-
_VEGALITECHART._serialized_end=231
|
21
|
+
_globals = globals()
|
22
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
23
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.VegaLiteChart_pb2', _globals)
|
24
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
25
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
26
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\034com.snowflake.apps.streamlitB\022VegaLiteChartProto'
|
27
|
+
_globals['_VEGALITECHART']._serialized_start=108
|
28
|
+
_globals['_VEGALITECHART']._serialized_end=231
|
28
29
|
# @@protoc_insertion_point(module_scope)
|
@@ -16,6 +16,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
16
|
See the License for the specific language governing permissions and
|
17
17
|
limitations under the License.
|
18
18
|
"""
|
19
|
+
|
19
20
|
import builtins
|
20
21
|
import collections.abc
|
21
22
|
import google.protobuf.descriptor
|
@@ -23,15 +24,11 @@ import google.protobuf.internal.containers
|
|
23
24
|
import google.protobuf.message
|
24
25
|
import streamlit.proto.DataFrame_pb2
|
25
26
|
import streamlit.proto.NamedDataSet_pb2
|
26
|
-
import
|
27
|
-
|
28
|
-
if sys.version_info >= (3, 8):
|
29
|
-
import typing as typing_extensions
|
30
|
-
else:
|
31
|
-
import typing_extensions
|
27
|
+
import typing
|
32
28
|
|
33
29
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
34
30
|
|
31
|
+
@typing.final
|
35
32
|
class VegaLiteChart(google.protobuf.message.Message):
|
36
33
|
"""DEPRECATED: This proto message is deprecated and unused. The ArrowVegaLiteChart
|
37
34
|
proto message should be used instead.
|
@@ -45,19 +42,21 @@ class VegaLiteChart(google.protobuf.message.Message):
|
|
45
42
|
USE_CONTAINER_WIDTH_FIELD_NUMBER: builtins.int
|
46
43
|
spec: builtins.str
|
47
44
|
"""The a JSON-formatted string with the Vega-Lite spec."""
|
45
|
+
use_container_width: builtins.bool
|
46
|
+
"""If True, will overwrite the chart width spec to fit to container."""
|
48
47
|
@property
|
49
48
|
def data(self) -> streamlit.proto.DataFrame_pb2.DataFrame:
|
50
49
|
"""TODO Maybe remove
|
51
50
|
The dataframe that will be used as the chart's main data source, if
|
52
51
|
specified using Vega-Lite's inline API.
|
53
52
|
"""
|
53
|
+
|
54
54
|
@property
|
55
55
|
def datasets(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[streamlit.proto.NamedDataSet_pb2.NamedDataSet]:
|
56
56
|
"""Dataframes associated with this chart using Vega-Lite's datasets API, if
|
57
57
|
any.
|
58
58
|
"""
|
59
|
-
|
60
|
-
"""If True, will overwrite the chart width spec to fit to container."""
|
59
|
+
|
61
60
|
def __init__(
|
62
61
|
self,
|
63
62
|
*,
|
@@ -66,7 +65,7 @@ class VegaLiteChart(google.protobuf.message.Message):
|
|
66
65
|
datasets: collections.abc.Iterable[streamlit.proto.NamedDataSet_pb2.NamedDataSet] | None = ...,
|
67
66
|
use_container_width: builtins.bool = ...,
|
68
67
|
) -> None: ...
|
69
|
-
def HasField(self, field_name:
|
70
|
-
def ClearField(self, field_name:
|
68
|
+
def HasField(self, field_name: typing.Literal["data", b"data"]) -> builtins.bool: ...
|
69
|
+
def ClearField(self, field_name: typing.Literal["data", b"data", "datasets", b"datasets", "spec", b"spec", "use_container_width", b"use_container_width"]) -> None: ...
|
71
70
|
|
72
71
|
global___VegaLiteChart = VegaLiteChart
|
streamlit/proto/Video_pb2.py
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
3
|
# source: streamlit/proto/Video.proto
|
4
|
+
# Protobuf Python Version: 5.26.1
|
4
5
|
"""Generated protocol buffer code."""
|
5
|
-
from google.protobuf.internal import builder as _builder
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
8
|
from google.protobuf import symbol_database as _symbol_database
|
9
|
+
from google.protobuf.internal import builder as _builder
|
9
10
|
# @@protoc_insertion_point(imports)
|
10
11
|
|
11
12
|
_sym_db = _symbol_database.Default()
|
@@ -15,16 +16,16 @@ _sym_db = _symbol_database.Default()
|
|
15
16
|
|
16
17
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1bstreamlit/proto/Video.proto\"+\n\rSubtitleTrack\x12\r\n\x05label\x18\x01 \x01(\t\x12\x0b\n\x03url\x18\x02 \x01(\t\"\x87\x02\n\x05Video\x12\x0b\n\x03url\x18\x06 \x01(\t\x12\x12\n\nstart_time\x18\x03 \x01(\x05\x12\x19\n\x04type\x18\x05 \x01(\x0e\x32\x0b.Video.Type\x12!\n\tsubtitles\x18\x07 \x03(\x0b\x32\x0e.SubtitleTrack\x12\x10\n\x08\x65nd_time\x18\x08 \x01(\x05\x12\x0c\n\x04loop\x18\t \x01(\x08\x12\x10\n\x08\x61utoplay\x18\n \x01(\x08\x12\r\n\x05muted\x18\x0b \x01(\x08\x12\n\n\x02id\x18\x0c \x01(\t\"2\n\x04Type\x12\n\n\x06UNUSED\x10\x00\x12\n\n\x06NATIVE\x10\x01\x12\x12\n\x0eYOUTUBE_IFRAME\x10\x02J\x04\x08\x01\x10\x02J\x04\x08\x02\x10\x03J\x04\x08\x04\x10\x05R\x06\x66ormatR\x04\x64\x61taB*\n\x1c\x63om.snowflake.apps.streamlitB\nVideoProtob\x06proto3')
|
17
18
|
|
18
|
-
|
19
|
-
_builder.
|
20
|
-
|
21
|
-
|
22
|
-
DESCRIPTOR.
|
23
|
-
DESCRIPTOR._serialized_options = b'\n\034com.snowflake.apps.streamlitB\nVideoProto'
|
24
|
-
_SUBTITLETRACK._serialized_start=31
|
25
|
-
_SUBTITLETRACK._serialized_end=74
|
26
|
-
_VIDEO._serialized_start=77
|
27
|
-
_VIDEO._serialized_end=340
|
28
|
-
_VIDEO_TYPE._serialized_start=258
|
29
|
-
_VIDEO_TYPE._serialized_end=308
|
19
|
+
_globals = globals()
|
20
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
21
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.Video_pb2', _globals)
|
22
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
23
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
24
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\034com.snowflake.apps.streamlitB\nVideoProto'
|
25
|
+
_globals['_SUBTITLETRACK']._serialized_start=31
|
26
|
+
_globals['_SUBTITLETRACK']._serialized_end=74
|
27
|
+
_globals['_VIDEO']._serialized_start=77
|
28
|
+
_globals['_VIDEO']._serialized_end=340
|
29
|
+
_globals['_VIDEO_TYPE']._serialized_start=258
|
30
|
+
_globals['_VIDEO_TYPE']._serialized_end=308
|
30
31
|
# @@protoc_insertion_point(module_scope)
|
streamlit/proto/Video_pb2.pyi
CHANGED
@@ -16,6 +16,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
16
|
See the License for the specific language governing permissions and
|
17
17
|
limitations under the License.
|
18
18
|
"""
|
19
|
+
|
19
20
|
import builtins
|
20
21
|
import collections.abc
|
21
22
|
import google.protobuf.descriptor
|
@@ -32,6 +33,7 @@ else:
|
|
32
33
|
|
33
34
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
34
35
|
|
36
|
+
@typing.final
|
35
37
|
class SubtitleTrack(google.protobuf.message.Message):
|
36
38
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
37
39
|
|
@@ -46,10 +48,11 @@ class SubtitleTrack(google.protobuf.message.Message):
|
|
46
48
|
label: builtins.str = ...,
|
47
49
|
url: builtins.str = ...,
|
48
50
|
) -> None: ...
|
49
|
-
def ClearField(self, field_name:
|
51
|
+
def ClearField(self, field_name: typing.Literal["label", b"label", "url", b"url"]) -> None: ...
|
50
52
|
|
51
53
|
global___SubtitleTrack = SubtitleTrack
|
52
54
|
|
55
|
+
@typing.final
|
53
56
|
class Video(google.protobuf.message.Message):
|
54
57
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
55
58
|
|
@@ -57,7 +60,7 @@ class Video(google.protobuf.message.Message):
|
|
57
60
|
ValueType = typing.NewType("ValueType", builtins.int)
|
58
61
|
V: typing_extensions.TypeAlias = ValueType
|
59
62
|
|
60
|
-
class _TypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[Video._Type.ValueType], builtins.type):
|
63
|
+
class _TypeEnumTypeWrapper(google.protobuf.internal.enum_type_wrapper._EnumTypeWrapper[Video._Type.ValueType], builtins.type):
|
61
64
|
DESCRIPTOR: google.protobuf.descriptor.EnumDescriptor
|
62
65
|
UNUSED: Video._Type.ValueType # 0
|
63
66
|
"""This should always exist."""
|
@@ -85,9 +88,6 @@ class Video(google.protobuf.message.Message):
|
|
85
88
|
"""The currentTime attribute of the HTML <video> tag's <source> subtag."""
|
86
89
|
type: global___Video.Type.ValueType
|
87
90
|
"""Type affects how browser wraps the video in tags: plain HTML5, YouTube..."""
|
88
|
-
@property
|
89
|
-
def subtitles(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SubtitleTrack]:
|
90
|
-
"""Repeated field for subtitle tracks"""
|
91
91
|
end_time: builtins.int
|
92
92
|
"""The time at which the video should stop playing. If not specified, plays to the end."""
|
93
93
|
loop: builtins.bool
|
@@ -95,6 +95,10 @@ class Video(google.protobuf.message.Message):
|
|
95
95
|
autoplay: builtins.bool
|
96
96
|
muted: builtins.bool
|
97
97
|
id: builtins.str
|
98
|
+
@property
|
99
|
+
def subtitles(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SubtitleTrack]:
|
100
|
+
"""Repeated field for subtitle tracks"""
|
101
|
+
|
98
102
|
def __init__(
|
99
103
|
self,
|
100
104
|
*,
|
@@ -108,6 +112,6 @@ class Video(google.protobuf.message.Message):
|
|
108
112
|
muted: builtins.bool = ...,
|
109
113
|
id: builtins.str = ...,
|
110
114
|
) -> None: ...
|
111
|
-
def ClearField(self, field_name:
|
115
|
+
def ClearField(self, field_name: typing.Literal["autoplay", b"autoplay", "end_time", b"end_time", "id", b"id", "loop", b"loop", "muted", b"muted", "start_time", b"start_time", "subtitles", b"subtitles", "type", b"type", "url", b"url"]) -> None: ...
|
112
116
|
|
113
117
|
global___Video = Video
|
@@ -1,11 +1,12 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
3
|
# source: streamlit/proto/WidgetStates.proto
|
4
|
+
# Protobuf Python Version: 5.26.1
|
4
5
|
"""Generated protocol buffer code."""
|
5
|
-
from google.protobuf.internal import builder as _builder
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
8
|
from google.protobuf import symbol_database as _symbol_database
|
9
|
+
from google.protobuf.internal import builder as _builder
|
9
10
|
# @@protoc_insertion_point(imports)
|
10
11
|
|
11
12
|
_sym_db = _symbol_database.Default()
|
@@ -17,14 +18,14 @@ from streamlit.proto import Components_pb2 as streamlit_dot_proto_dot_Components
|
|
17
18
|
|
18
19
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\"streamlit/proto/WidgetStates.proto\x1a\x1cstreamlit/proto/Common.proto\x1a streamlit/proto/Components.proto\"-\n\x0cWidgetStates\x12\x1d\n\x07widgets\x18\x01 \x03(\x0b\x32\x0c.WidgetState\"\xd6\x03\n\x0bWidgetState\x12\n\n\x02id\x18\x01 \x01(\t\x12\x17\n\rtrigger_value\x18\x02 \x01(\x08H\x00\x12\x14\n\nbool_value\x18\x03 \x01(\x08H\x00\x12\x16\n\x0c\x64ouble_value\x18\x04 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x05 \x01(\x12H\x00\x12\x16\n\x0cstring_value\x18\x06 \x01(\tH\x00\x12*\n\x12\x64ouble_array_value\x18\x07 \x01(\x0b\x32\x0c.DoubleArrayH\x00\x12\'\n\x0fint_array_value\x18\x08 \x01(\x0b\x32\x0c.SInt64ArrayH\x00\x12*\n\x12string_array_value\x18\t \x01(\x0b\x32\x0c.StringArrayH\x00\x12\x14\n\njson_value\x18\n \x01(\tH\x00\x12\"\n\x0b\x61rrow_value\x18\x0b \x01(\x0b\x32\x0b.ArrowTableH\x00\x12\x15\n\x0b\x62ytes_value\x18\x0c \x01(\x0cH\x00\x12\x37\n\x19\x66ile_uploader_state_value\x18\r \x01(\x0b\x32\x12.FileUploaderStateH\x00\x12\x33\n\x14string_trigger_value\x18\x0e \x01(\x0b\x32\x13.StringTriggerValueH\x00\x42\x07\n\x05valueB1\n\x1c\x63om.snowflake.apps.streamlitB\x11WidgetStatesProtob\x06proto3')
|
19
20
|
|
20
|
-
|
21
|
-
_builder.
|
22
|
-
|
23
|
-
|
24
|
-
DESCRIPTOR.
|
25
|
-
DESCRIPTOR._serialized_options = b'\n\034com.snowflake.apps.streamlitB\021WidgetStatesProto'
|
26
|
-
_WIDGETSTATES._serialized_start=102
|
27
|
-
_WIDGETSTATES._serialized_end=147
|
28
|
-
_WIDGETSTATE._serialized_start=150
|
29
|
-
_WIDGETSTATE._serialized_end=620
|
21
|
+
_globals = globals()
|
22
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
23
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.WidgetStates_pb2', _globals)
|
24
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
25
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
26
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\034com.snowflake.apps.streamlitB\021WidgetStatesProto'
|
27
|
+
_globals['_WIDGETSTATES']._serialized_start=102
|
28
|
+
_globals['_WIDGETSTATES']._serialized_end=147
|
29
|
+
_globals['_WIDGETSTATE']._serialized_start=150
|
30
|
+
_globals['_WIDGETSTATE']._serialized_end=620
|
30
31
|
# @@protoc_insertion_point(module_scope)
|
@@ -16,6 +16,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
16
|
See the License for the specific language governing permissions and
|
17
17
|
limitations under the License.
|
18
18
|
"""
|
19
|
+
|
19
20
|
import builtins
|
20
21
|
import collections.abc
|
21
22
|
import google.protobuf.descriptor
|
@@ -23,15 +24,11 @@ import google.protobuf.internal.containers
|
|
23
24
|
import google.protobuf.message
|
24
25
|
import streamlit.proto.Common_pb2
|
25
26
|
import streamlit.proto.Components_pb2
|
26
|
-
import
|
27
|
-
|
28
|
-
if sys.version_info >= (3, 8):
|
29
|
-
import typing as typing_extensions
|
30
|
-
else:
|
31
|
-
import typing_extensions
|
27
|
+
import typing
|
32
28
|
|
33
29
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
34
30
|
|
31
|
+
@typing.final
|
35
32
|
class WidgetStates(google.protobuf.message.Message):
|
36
33
|
"""State for every widget in an app."""
|
37
34
|
|
@@ -45,10 +42,11 @@ class WidgetStates(google.protobuf.message.Message):
|
|
45
42
|
*,
|
46
43
|
widgets: collections.abc.Iterable[global___WidgetState] | None = ...,
|
47
44
|
) -> None: ...
|
48
|
-
def ClearField(self, field_name:
|
45
|
+
def ClearField(self, field_name: typing.Literal["widgets", b"widgets"]) -> None: ...
|
49
46
|
|
50
47
|
global___WidgetStates = WidgetStates
|
51
48
|
|
49
|
+
@typing.final
|
52
50
|
class WidgetState(google.protobuf.message.Message):
|
53
51
|
"""State for a single widget."""
|
54
52
|
|
@@ -81,16 +79,16 @@ class WidgetState(google.protobuf.message.Message):
|
|
81
79
|
double_value: builtins.float
|
82
80
|
int_value: builtins.int
|
83
81
|
string_value: builtins.str
|
82
|
+
json_value: builtins.str
|
83
|
+
bytes_value: builtins.bytes
|
84
84
|
@property
|
85
85
|
def double_array_value(self) -> streamlit.proto.Common_pb2.DoubleArray: ...
|
86
86
|
@property
|
87
87
|
def int_array_value(self) -> streamlit.proto.Common_pb2.SInt64Array: ...
|
88
88
|
@property
|
89
89
|
def string_array_value(self) -> streamlit.proto.Common_pb2.StringArray: ...
|
90
|
-
json_value: builtins.str
|
91
90
|
@property
|
92
91
|
def arrow_value(self) -> streamlit.proto.Components_pb2.ArrowTable: ...
|
93
|
-
bytes_value: builtins.bytes
|
94
92
|
@property
|
95
93
|
def file_uploader_state_value(self) -> streamlit.proto.Common_pb2.FileUploaderState: ...
|
96
94
|
@property
|
@@ -98,6 +96,7 @@ class WidgetState(google.protobuf.message.Message):
|
|
98
96
|
"""String value that resets itself to empty after the script has been run.
|
99
97
|
This is used for the chat_input widget.
|
100
98
|
"""
|
99
|
+
|
101
100
|
def __init__(
|
102
101
|
self,
|
103
102
|
*,
|
@@ -116,8 +115,8 @@ class WidgetState(google.protobuf.message.Message):
|
|
116
115
|
file_uploader_state_value: streamlit.proto.Common_pb2.FileUploaderState | None = ...,
|
117
116
|
string_trigger_value: streamlit.proto.Common_pb2.StringTriggerValue | None = ...,
|
118
117
|
) -> None: ...
|
119
|
-
def HasField(self, field_name:
|
120
|
-
def ClearField(self, field_name:
|
121
|
-
def WhichOneof(self, oneof_group:
|
118
|
+
def HasField(self, field_name: typing.Literal["arrow_value", b"arrow_value", "bool_value", b"bool_value", "bytes_value", b"bytes_value", "double_array_value", b"double_array_value", "double_value", b"double_value", "file_uploader_state_value", b"file_uploader_state_value", "int_array_value", b"int_array_value", "int_value", b"int_value", "json_value", b"json_value", "string_array_value", b"string_array_value", "string_trigger_value", b"string_trigger_value", "string_value", b"string_value", "trigger_value", b"trigger_value", "value", b"value"]) -> builtins.bool: ...
|
119
|
+
def ClearField(self, field_name: typing.Literal["arrow_value", b"arrow_value", "bool_value", b"bool_value", "bytes_value", b"bytes_value", "double_array_value", b"double_array_value", "double_value", b"double_value", "file_uploader_state_value", b"file_uploader_state_value", "id", b"id", "int_array_value", b"int_array_value", "int_value", b"int_value", "json_value", b"json_value", "string_array_value", b"string_array_value", "string_trigger_value", b"string_trigger_value", "string_value", b"string_value", "trigger_value", b"trigger_value", "value", b"value"]) -> None: ...
|
120
|
+
def WhichOneof(self, oneof_group: typing.Literal["value", b"value"]) -> typing.Literal["trigger_value", "bool_value", "double_value", "int_value", "string_value", "double_array_value", "int_array_value", "string_array_value", "json_value", "arrow_value", "bytes_value", "file_uploader_state_value", "string_trigger_value"] | None: ...
|
122
121
|
|
123
122
|
global___WidgetState = WidgetState
|
@@ -1,11 +1,12 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
3
|
# source: streamlit/proto/openmetrics_data_model.proto
|
4
|
+
# Protobuf Python Version: 5.26.1
|
4
5
|
"""Generated protocol buffer code."""
|
5
|
-
from google.protobuf.internal import builder as _builder
|
6
6
|
from google.protobuf import descriptor as _descriptor
|
7
7
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
8
8
|
from google.protobuf import symbol_database as _symbol_database
|
9
|
+
from google.protobuf.internal import builder as _builder
|
9
10
|
# @@protoc_insertion_point(imports)
|
10
11
|
|
11
12
|
_sym_db = _symbol_database.Default()
|
@@ -16,44 +17,44 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
|
|
16
17
|
|
17
18
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n,streamlit/proto/openmetrics_data_model.proto\x12\x0bopenmetrics\x1a\x1fgoogle/protobuf/timestamp.proto\"?\n\tMetricSet\x12\x32\n\x0fmetric_families\x18\x01 \x03(\x0b\x32\x19.openmetrics.MetricFamily\"\x85\x01\n\x0cMetricFamily\x12\x0c\n\x04name\x18\x01 \x01(\t\x12%\n\x04type\x18\x02 \x01(\x0e\x32\x17.openmetrics.MetricType\x12\x0c\n\x04unit\x18\x03 \x01(\t\x12\x0c\n\x04help\x18\x04 \x01(\t\x12$\n\x07metrics\x18\x05 \x03(\x0b\x32\x13.openmetrics.Metric\"]\n\x06Metric\x12\"\n\x06labels\x18\x01 \x03(\x0b\x32\x12.openmetrics.Label\x12/\n\rmetric_points\x18\x02 \x03(\x0b\x32\x18.openmetrics.MetricPoint\"$\n\x05Label\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\"\xae\x03\n\x0bMetricPoint\x12\x32\n\runknown_value\x18\x01 \x01(\x0b\x32\x19.openmetrics.UnknownValueH\x00\x12.\n\x0bgauge_value\x18\x02 \x01(\x0b\x32\x17.openmetrics.GaugeValueH\x00\x12\x32\n\rcounter_value\x18\x03 \x01(\x0b\x32\x19.openmetrics.CounterValueH\x00\x12\x36\n\x0fhistogram_value\x18\x04 \x01(\x0b\x32\x1b.openmetrics.HistogramValueH\x00\x12\x35\n\x0fstate_set_value\x18\x05 \x01(\x0b\x32\x1a.openmetrics.StateSetValueH\x00\x12,\n\ninfo_value\x18\x06 \x01(\x0b\x32\x16.openmetrics.InfoValueH\x00\x12\x32\n\rsummary_value\x18\x07 \x01(\x0b\x32\x19.openmetrics.SummaryValueH\x00\x12-\n\ttimestamp\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x07\n\x05value\"D\n\x0cUnknownValue\x12\x16\n\x0c\x64ouble_value\x18\x01 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x02 \x01(\x03H\x00\x42\x07\n\x05value\"B\n\nGaugeValue\x12\x16\n\x0c\x64ouble_value\x18\x01 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x02 \x01(\x03H\x00\x42\x07\n\x05value\"\x9a\x01\n\x0c\x43ounterValue\x12\x16\n\x0c\x64ouble_value\x18\x01 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x02 \x01(\x04H\x00\x12+\n\x07\x63reated\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\'\n\x08\x65xemplar\x18\x04 \x01(\x0b\x32\x15.openmetrics.ExemplarB\x07\n\x05total\"\x8c\x02\n\x0eHistogramValue\x12\x16\n\x0c\x64ouble_value\x18\x01 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x02 \x01(\x03H\x00\x12\r\n\x05\x63ount\x18\x03 \x01(\x04\x12+\n\x07\x63reated\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x07\x62uckets\x18\x05 \x03(\x0b\x32\".openmetrics.HistogramValue.Bucket\x1aU\n\x06\x42ucket\x12\r\n\x05\x63ount\x18\x01 \x01(\x04\x12\x13\n\x0bupper_bound\x18\x02 \x01(\x01\x12\'\n\x08\x65xemplar\x18\x03 \x01(\x0b\x32\x15.openmetrics.ExemplarB\x05\n\x03sum\"k\n\x08\x45xemplar\x12\r\n\x05value\x18\x01 \x01(\x01\x12-\n\ttimestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12!\n\x05label\x18\x03 \x03(\x0b\x32\x12.openmetrics.Label\"i\n\rStateSetValue\x12\x30\n\x06states\x18\x01 \x03(\x0b\x32 .openmetrics.StateSetValue.State\x1a&\n\x05State\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x12\x0c\n\x04name\x18\x02 \x01(\t\"-\n\tInfoValue\x12 \n\x04info\x18\x01 \x03(\x0b\x32\x12.openmetrics.Label\"\xe1\x01\n\x0cSummaryValue\x12\x16\n\x0c\x64ouble_value\x18\x01 \x01(\x01H\x00\x12\x13\n\tint_value\x18\x02 \x01(\x03H\x00\x12\r\n\x05\x63ount\x18\x03 \x01(\x04\x12+\n\x07\x63reated\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x34\n\x08quantile\x18\x05 \x03(\x0b\x32\".openmetrics.SummaryValue.Quantile\x1a+\n\x08Quantile\x12\x10\n\x08quantile\x18\x01 \x01(\x01\x12\r\n\x05value\x18\x02 \x01(\x01\x42\x05\n\x03sum*{\n\nMetricType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\t\n\x05GAUGE\x10\x01\x12\x0b\n\x07\x43OUNTER\x10\x02\x12\r\n\tSTATE_SET\x10\x03\x12\x08\n\x04INFO\x10\x04\x12\r\n\tHISTOGRAM\x10\x05\x12\x13\n\x0fGAUGE_HISTOGRAM\x10\x06\x12\x0b\n\x07SUMMARY\x10\x07\x42\x39\n\x1c\x63om.snowflake.apps.streamlitB\x19OpenmetricsDataModelProtob\x06proto3')
|
18
19
|
|
19
|
-
|
20
|
-
_builder.
|
21
|
-
|
22
|
-
|
23
|
-
DESCRIPTOR.
|
24
|
-
DESCRIPTOR._serialized_options = b'\n\034com.snowflake.apps.streamlitB\031OpenmetricsDataModelProto'
|
25
|
-
_METRICTYPE._serialized_start=1918
|
26
|
-
_METRICTYPE._serialized_end=2041
|
27
|
-
_METRICSET._serialized_start=94
|
28
|
-
_METRICSET._serialized_end=157
|
29
|
-
_METRICFAMILY._serialized_start=160
|
30
|
-
_METRICFAMILY._serialized_end=293
|
31
|
-
_METRIC._serialized_start=295
|
32
|
-
_METRIC._serialized_end=388
|
33
|
-
_LABEL._serialized_start=390
|
34
|
-
_LABEL._serialized_end=426
|
35
|
-
_METRICPOINT._serialized_start=429
|
36
|
-
_METRICPOINT._serialized_end=859
|
37
|
-
_UNKNOWNVALUE._serialized_start=861
|
38
|
-
_UNKNOWNVALUE._serialized_end=929
|
39
|
-
_GAUGEVALUE._serialized_start=931
|
40
|
-
_GAUGEVALUE._serialized_end=997
|
41
|
-
_COUNTERVALUE._serialized_start=1000
|
42
|
-
_COUNTERVALUE._serialized_end=1154
|
43
|
-
_HISTOGRAMVALUE._serialized_start=1157
|
44
|
-
_HISTOGRAMVALUE._serialized_end=1425
|
45
|
-
_HISTOGRAMVALUE_BUCKET._serialized_start=1333
|
46
|
-
_HISTOGRAMVALUE_BUCKET._serialized_end=1418
|
47
|
-
_EXEMPLAR._serialized_start=1427
|
48
|
-
_EXEMPLAR._serialized_end=1534
|
49
|
-
_STATESETVALUE._serialized_start=1536
|
50
|
-
_STATESETVALUE._serialized_end=1641
|
51
|
-
_STATESETVALUE_STATE._serialized_start=1603
|
52
|
-
_STATESETVALUE_STATE._serialized_end=1641
|
53
|
-
_INFOVALUE._serialized_start=1643
|
54
|
-
_INFOVALUE._serialized_end=1688
|
55
|
-
_SUMMARYVALUE._serialized_start=1691
|
56
|
-
_SUMMARYVALUE._serialized_end=1916
|
57
|
-
_SUMMARYVALUE_QUANTILE._serialized_start=1866
|
58
|
-
_SUMMARYVALUE_QUANTILE._serialized_end=1909
|
20
|
+
_globals = globals()
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.openmetrics_data_model_pb2', _globals)
|
23
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
24
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
25
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\034com.snowflake.apps.streamlitB\031OpenmetricsDataModelProto'
|
26
|
+
_globals['_METRICTYPE']._serialized_start=1918
|
27
|
+
_globals['_METRICTYPE']._serialized_end=2041
|
28
|
+
_globals['_METRICSET']._serialized_start=94
|
29
|
+
_globals['_METRICSET']._serialized_end=157
|
30
|
+
_globals['_METRICFAMILY']._serialized_start=160
|
31
|
+
_globals['_METRICFAMILY']._serialized_end=293
|
32
|
+
_globals['_METRIC']._serialized_start=295
|
33
|
+
_globals['_METRIC']._serialized_end=388
|
34
|
+
_globals['_LABEL']._serialized_start=390
|
35
|
+
_globals['_LABEL']._serialized_end=426
|
36
|
+
_globals['_METRICPOINT']._serialized_start=429
|
37
|
+
_globals['_METRICPOINT']._serialized_end=859
|
38
|
+
_globals['_UNKNOWNVALUE']._serialized_start=861
|
39
|
+
_globals['_UNKNOWNVALUE']._serialized_end=929
|
40
|
+
_globals['_GAUGEVALUE']._serialized_start=931
|
41
|
+
_globals['_GAUGEVALUE']._serialized_end=997
|
42
|
+
_globals['_COUNTERVALUE']._serialized_start=1000
|
43
|
+
_globals['_COUNTERVALUE']._serialized_end=1154
|
44
|
+
_globals['_HISTOGRAMVALUE']._serialized_start=1157
|
45
|
+
_globals['_HISTOGRAMVALUE']._serialized_end=1425
|
46
|
+
_globals['_HISTOGRAMVALUE_BUCKET']._serialized_start=1333
|
47
|
+
_globals['_HISTOGRAMVALUE_BUCKET']._serialized_end=1418
|
48
|
+
_globals['_EXEMPLAR']._serialized_start=1427
|
49
|
+
_globals['_EXEMPLAR']._serialized_end=1534
|
50
|
+
_globals['_STATESETVALUE']._serialized_start=1536
|
51
|
+
_globals['_STATESETVALUE']._serialized_end=1641
|
52
|
+
_globals['_STATESETVALUE_STATE']._serialized_start=1603
|
53
|
+
_globals['_STATESETVALUE_STATE']._serialized_end=1641
|
54
|
+
_globals['_INFOVALUE']._serialized_start=1643
|
55
|
+
_globals['_INFOVALUE']._serialized_end=1688
|
56
|
+
_globals['_SUMMARYVALUE']._serialized_start=1691
|
57
|
+
_globals['_SUMMARYVALUE']._serialized_end=1916
|
58
|
+
_globals['_SUMMARYVALUE_QUANTILE']._serialized_start=1866
|
59
|
+
_globals['_SUMMARYVALUE_QUANTILE']._serialized_end=1909
|
59
60
|
# @@protoc_insertion_point(module_scope)
|