streamlit-nightly 1.35.1.dev20240602__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.dev20240602.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/METADATA +5 -5
- {streamlit_nightly-1.35.1.dev20240602.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.dev20240602.data → streamlit_nightly-1.35.1.dev20240604.data}/scripts/streamlit.cmd +0 -0
- {streamlit_nightly-1.35.1.dev20240602.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/WHEEL +0 -0
- {streamlit_nightly-1.35.1.dev20240602.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/entry_points.txt +0 -0
- {streamlit_nightly-1.35.1.dev20240602.dist-info → streamlit_nightly-1.35.1.dev20240604.dist-info}/top_level.txt +0 -0
streamlit/proto/Common_pb2.pyi
CHANGED
@@ -16,20 +16,17 @@ 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
|
22
23
|
import google.protobuf.internal.containers
|
23
24
|
import google.protobuf.message
|
24
|
-
import
|
25
|
-
|
26
|
-
if sys.version_info >= (3, 8):
|
27
|
-
import typing as typing_extensions
|
28
|
-
else:
|
29
|
-
import typing_extensions
|
25
|
+
import typing
|
30
26
|
|
31
27
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
32
28
|
|
29
|
+
@typing.final
|
33
30
|
class StringArray(google.protobuf.message.Message):
|
34
31
|
"""Message types that are common to multiple protobufs."""
|
35
32
|
|
@@ -43,10 +40,11 @@ class StringArray(google.protobuf.message.Message):
|
|
43
40
|
*,
|
44
41
|
data: collections.abc.Iterable[builtins.str] | None = ...,
|
45
42
|
) -> None: ...
|
46
|
-
def ClearField(self, field_name:
|
43
|
+
def ClearField(self, field_name: typing.Literal["data", b"data"]) -> None: ...
|
47
44
|
|
48
45
|
global___StringArray = StringArray
|
49
46
|
|
47
|
+
@typing.final
|
50
48
|
class DoubleArray(google.protobuf.message.Message):
|
51
49
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
52
50
|
|
@@ -58,10 +56,11 @@ class DoubleArray(google.protobuf.message.Message):
|
|
58
56
|
*,
|
59
57
|
data: collections.abc.Iterable[builtins.float] | None = ...,
|
60
58
|
) -> None: ...
|
61
|
-
def ClearField(self, field_name:
|
59
|
+
def ClearField(self, field_name: typing.Literal["data", b"data"]) -> None: ...
|
62
60
|
|
63
61
|
global___DoubleArray = DoubleArray
|
64
62
|
|
63
|
+
@typing.final
|
65
64
|
class Int32Array(google.protobuf.message.Message):
|
66
65
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
67
66
|
|
@@ -73,10 +72,11 @@ class Int32Array(google.protobuf.message.Message):
|
|
73
72
|
*,
|
74
73
|
data: collections.abc.Iterable[builtins.int] | None = ...,
|
75
74
|
) -> None: ...
|
76
|
-
def ClearField(self, field_name:
|
75
|
+
def ClearField(self, field_name: typing.Literal["data", b"data"]) -> None: ...
|
77
76
|
|
78
77
|
global___Int32Array = Int32Array
|
79
78
|
|
79
|
+
@typing.final
|
80
80
|
class Int64Array(google.protobuf.message.Message):
|
81
81
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
82
82
|
|
@@ -88,10 +88,11 @@ class Int64Array(google.protobuf.message.Message):
|
|
88
88
|
*,
|
89
89
|
data: collections.abc.Iterable[builtins.int] | None = ...,
|
90
90
|
) -> None: ...
|
91
|
-
def ClearField(self, field_name:
|
91
|
+
def ClearField(self, field_name: typing.Literal["data", b"data"]) -> None: ...
|
92
92
|
|
93
93
|
global___Int64Array = Int64Array
|
94
94
|
|
95
|
+
@typing.final
|
95
96
|
class SInt64Array(google.protobuf.message.Message):
|
96
97
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
97
98
|
|
@@ -103,10 +104,11 @@ class SInt64Array(google.protobuf.message.Message):
|
|
103
104
|
*,
|
104
105
|
data: collections.abc.Iterable[builtins.int] | None = ...,
|
105
106
|
) -> None: ...
|
106
|
-
def ClearField(self, field_name:
|
107
|
+
def ClearField(self, field_name: typing.Literal["data", b"data"]) -> None: ...
|
107
108
|
|
108
109
|
global___SInt64Array = SInt64Array
|
109
110
|
|
111
|
+
@typing.final
|
110
112
|
class UInt32Array(google.protobuf.message.Message):
|
111
113
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
112
114
|
|
@@ -118,10 +120,11 @@ class UInt32Array(google.protobuf.message.Message):
|
|
118
120
|
*,
|
119
121
|
data: collections.abc.Iterable[builtins.int] | None = ...,
|
120
122
|
) -> None: ...
|
121
|
-
def ClearField(self, field_name:
|
123
|
+
def ClearField(self, field_name: typing.Literal["data", b"data"]) -> None: ...
|
122
124
|
|
123
125
|
global___UInt32Array = UInt32Array
|
124
126
|
|
127
|
+
@typing.final
|
125
128
|
class StringTriggerValue(google.protobuf.message.Message):
|
126
129
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
127
130
|
|
@@ -132,12 +135,13 @@ class StringTriggerValue(google.protobuf.message.Message):
|
|
132
135
|
*,
|
133
136
|
data: builtins.str | None = ...,
|
134
137
|
) -> None: ...
|
135
|
-
def HasField(self, field_name:
|
136
|
-
def ClearField(self, field_name:
|
137
|
-
def WhichOneof(self, oneof_group:
|
138
|
+
def HasField(self, field_name: typing.Literal["_data", b"_data", "data", b"data"]) -> builtins.bool: ...
|
139
|
+
def ClearField(self, field_name: typing.Literal["_data", b"_data", "data", b"data"]) -> None: ...
|
140
|
+
def WhichOneof(self, oneof_group: typing.Literal["_data", b"_data"]) -> typing.Literal["data"] | None: ...
|
138
141
|
|
139
142
|
global___StringTriggerValue = StringTriggerValue
|
140
143
|
|
144
|
+
@typing.final
|
141
145
|
class FileURLsRequest(google.protobuf.message.Message):
|
142
146
|
"""NOTE: The FileURLsRequest, FileURLs, and FileURLsResponse message types
|
143
147
|
must remain stable as some external services rely on them to support
|
@@ -151,9 +155,9 @@ class FileURLsRequest(google.protobuf.message.Message):
|
|
151
155
|
FILE_NAMES_FIELD_NUMBER: builtins.int
|
152
156
|
SESSION_ID_FIELD_NUMBER: builtins.int
|
153
157
|
request_id: builtins.str
|
158
|
+
session_id: builtins.str
|
154
159
|
@property
|
155
160
|
def file_names(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]: ...
|
156
|
-
session_id: builtins.str
|
157
161
|
def __init__(
|
158
162
|
self,
|
159
163
|
*,
|
@@ -161,10 +165,11 @@ class FileURLsRequest(google.protobuf.message.Message):
|
|
161
165
|
file_names: collections.abc.Iterable[builtins.str] | None = ...,
|
162
166
|
session_id: builtins.str = ...,
|
163
167
|
) -> None: ...
|
164
|
-
def ClearField(self, field_name:
|
168
|
+
def ClearField(self, field_name: typing.Literal["file_names", b"file_names", "request_id", b"request_id", "session_id", b"session_id"]) -> None: ...
|
165
169
|
|
166
170
|
global___FileURLsRequest = FileURLsRequest
|
167
171
|
|
172
|
+
@typing.final
|
168
173
|
class FileURLs(google.protobuf.message.Message):
|
169
174
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
170
175
|
|
@@ -181,10 +186,11 @@ class FileURLs(google.protobuf.message.Message):
|
|
181
186
|
upload_url: builtins.str = ...,
|
182
187
|
delete_url: builtins.str = ...,
|
183
188
|
) -> None: ...
|
184
|
-
def ClearField(self, field_name:
|
189
|
+
def ClearField(self, field_name: typing.Literal["delete_url", b"delete_url", "file_id", b"file_id", "upload_url", b"upload_url"]) -> None: ...
|
185
190
|
|
186
191
|
global___FileURLs = FileURLs
|
187
192
|
|
193
|
+
@typing.final
|
188
194
|
class FileURLsResponse(google.protobuf.message.Message):
|
189
195
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
190
196
|
|
@@ -192,9 +198,9 @@ class FileURLsResponse(google.protobuf.message.Message):
|
|
192
198
|
FILE_URLS_FIELD_NUMBER: builtins.int
|
193
199
|
ERROR_MSG_FIELD_NUMBER: builtins.int
|
194
200
|
response_id: builtins.str
|
201
|
+
error_msg: builtins.str
|
195
202
|
@property
|
196
203
|
def file_urls(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___FileURLs]: ...
|
197
|
-
error_msg: builtins.str
|
198
204
|
def __init__(
|
199
205
|
self,
|
200
206
|
*,
|
@@ -202,10 +208,11 @@ class FileURLsResponse(google.protobuf.message.Message):
|
|
202
208
|
file_urls: collections.abc.Iterable[global___FileURLs] | None = ...,
|
203
209
|
error_msg: builtins.str = ...,
|
204
210
|
) -> None: ...
|
205
|
-
def ClearField(self, field_name:
|
211
|
+
def ClearField(self, field_name: typing.Literal["error_msg", b"error_msg", "file_urls", b"file_urls", "response_id", b"response_id"]) -> None: ...
|
206
212
|
|
207
213
|
global___FileURLsResponse = FileURLsResponse
|
208
214
|
|
215
|
+
@typing.final
|
209
216
|
class UploadedFileInfo(google.protobuf.message.Message):
|
210
217
|
"""Information on a file uploaded via the file_uploader widget."""
|
211
218
|
|
@@ -226,6 +233,7 @@ class UploadedFileInfo(google.protobuf.message.Message):
|
|
226
233
|
@property
|
227
234
|
def file_urls(self) -> global___FileURLs:
|
228
235
|
"""Metadata containing information about file_urls."""
|
236
|
+
|
229
237
|
def __init__(
|
230
238
|
self,
|
231
239
|
*,
|
@@ -235,11 +243,12 @@ class UploadedFileInfo(google.protobuf.message.Message):
|
|
235
243
|
file_id: builtins.str = ...,
|
236
244
|
file_urls: global___FileURLs | None = ...,
|
237
245
|
) -> None: ...
|
238
|
-
def HasField(self, field_name:
|
239
|
-
def ClearField(self, field_name:
|
246
|
+
def HasField(self, field_name: typing.Literal["file_urls", b"file_urls"]) -> builtins.bool: ...
|
247
|
+
def ClearField(self, field_name: typing.Literal["file_id", b"file_id", "file_urls", b"file_urls", "id", b"id", "name", b"name", "size", b"size"]) -> None: ...
|
240
248
|
|
241
249
|
global___UploadedFileInfo = UploadedFileInfo
|
242
250
|
|
251
|
+
@typing.final
|
243
252
|
class FileUploaderState(google.protobuf.message.Message):
|
244
253
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
245
254
|
|
@@ -255,6 +264,6 @@ class FileUploaderState(google.protobuf.message.Message):
|
|
255
264
|
max_file_id: builtins.int = ...,
|
256
265
|
uploaded_file_info: collections.abc.Iterable[global___UploadedFileInfo] | None = ...,
|
257
266
|
) -> None: ...
|
258
|
-
def ClearField(self, field_name:
|
267
|
+
def ClearField(self, field_name: typing.Literal["max_file_id", b"max_file_id", "uploaded_file_info", b"uploaded_file_info"]) -> None: ...
|
259
268
|
|
260
269
|
global___FileUploaderState = FileUploaderState
|
@@ -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/Components.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,20 +16,20 @@ _sym_db = _symbol_database.Default()
|
|
15
16
|
|
16
17
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n streamlit/proto/Components.proto\"\x8b\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\"_\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\x42/\n\x1c\x63om.snowflake.apps.streamlitB\x0f\x43omponentsProtob\x06proto3')
|
17
18
|
|
18
|
-
|
19
|
-
_builder.
|
20
|
-
|
21
|
-
|
22
|
-
DESCRIPTOR.
|
23
|
-
DESCRIPTOR._serialized_options = b'\n\034com.snowflake.apps.streamlitB\017ComponentsProto'
|
24
|
-
_COMPONENTINSTANCE._serialized_start=37
|
25
|
-
_COMPONENTINSTANCE._serialized_end=176
|
26
|
-
_SPECIALARG._serialized_start=178
|
27
|
-
_SPECIALARG._serialized_end=273
|
28
|
-
_ARROWDATAFRAME._serialized_start=275
|
29
|
-
_ARROWDATAFRAME._serialized_end=349
|
30
|
-
_ARROWTABLE._serialized_start=351
|
31
|
-
_ARROWTABLE._serialized_end=444
|
32
|
-
_ARROWTABLESTYLER._serialized_start=446
|
33
|
-
_ARROWTABLESTYLER._serialized_end=535
|
19
|
+
_globals = globals()
|
20
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
21
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.Components_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\017ComponentsProto'
|
25
|
+
_globals['_COMPONENTINSTANCE']._serialized_start=37
|
26
|
+
_globals['_COMPONENTINSTANCE']._serialized_end=176
|
27
|
+
_globals['_SPECIALARG']._serialized_start=178
|
28
|
+
_globals['_SPECIALARG']._serialized_end=273
|
29
|
+
_globals['_ARROWDATAFRAME']._serialized_start=275
|
30
|
+
_globals['_ARROWDATAFRAME']._serialized_end=349
|
31
|
+
_globals['_ARROWTABLE']._serialized_start=351
|
32
|
+
_globals['_ARROWTABLE']._serialized_end=444
|
33
|
+
_globals['_ARROWTABLESTYLER']._serialized_start=446
|
34
|
+
_globals['_ARROWTABLESTYLER']._serialized_end=535
|
34
35
|
# @@protoc_insertion_point(module_scope)
|
@@ -16,20 +16,17 @@ 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
|
22
23
|
import google.protobuf.internal.containers
|
23
24
|
import google.protobuf.message
|
24
|
-
import
|
25
|
-
|
26
|
-
if sys.version_info >= (3, 8):
|
27
|
-
import typing as typing_extensions
|
28
|
-
else:
|
29
|
-
import typing_extensions
|
25
|
+
import typing
|
30
26
|
|
31
27
|
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor
|
32
28
|
|
29
|
+
@typing.final
|
33
30
|
class ComponentInstance(google.protobuf.message.Message):
|
34
31
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
35
32
|
|
@@ -43,11 +40,6 @@ class ComponentInstance(google.protobuf.message.Message):
|
|
43
40
|
"""The instance's "widget ID", used to uniquely identify it."""
|
44
41
|
json_args: builtins.str
|
45
42
|
"""Argument dictionary, for JSON-serializable args."""
|
46
|
-
@property
|
47
|
-
def special_args(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SpecialArg]:
|
48
|
-
"""Additional, non-JSON args. These require special processing
|
49
|
-
on the other end.
|
50
|
-
"""
|
51
43
|
component_name: builtins.str
|
52
44
|
"""The component type's unique name."""
|
53
45
|
url: builtins.str
|
@@ -56,6 +48,12 @@ class ComponentInstance(google.protobuf.message.Message):
|
|
56
48
|
that they're developing their component in.
|
57
49
|
"""
|
58
50
|
form_id: builtins.str
|
51
|
+
@property
|
52
|
+
def special_args(self) -> google.protobuf.internal.containers.RepeatedCompositeFieldContainer[global___SpecialArg]:
|
53
|
+
"""Additional, non-JSON args. These require special processing
|
54
|
+
on the other end.
|
55
|
+
"""
|
56
|
+
|
59
57
|
def __init__(
|
60
58
|
self,
|
61
59
|
*,
|
@@ -66,10 +64,11 @@ class ComponentInstance(google.protobuf.message.Message):
|
|
66
64
|
url: builtins.str = ...,
|
67
65
|
form_id: builtins.str = ...,
|
68
66
|
) -> None: ...
|
69
|
-
def ClearField(self, field_name:
|
67
|
+
def ClearField(self, field_name: typing.Literal["component_name", b"component_name", "form_id", b"form_id", "id", b"id", "json_args", b"json_args", "special_args", b"special_args", "url", b"url"]) -> None: ...
|
70
68
|
|
71
69
|
global___ComponentInstance = ComponentInstance
|
72
70
|
|
71
|
+
@typing.final
|
73
72
|
class SpecialArg(google.protobuf.message.Message):
|
74
73
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
75
74
|
|
@@ -77,9 +76,9 @@ class SpecialArg(google.protobuf.message.Message):
|
|
77
76
|
ARROW_DATAFRAME_FIELD_NUMBER: builtins.int
|
78
77
|
BYTES_FIELD_NUMBER: builtins.int
|
79
78
|
key: builtins.str
|
79
|
+
bytes: builtins.bytes
|
80
80
|
@property
|
81
81
|
def arrow_dataframe(self) -> global___ArrowDataframe: ...
|
82
|
-
bytes: builtins.bytes
|
83
82
|
def __init__(
|
84
83
|
self,
|
85
84
|
*,
|
@@ -87,12 +86,13 @@ class SpecialArg(google.protobuf.message.Message):
|
|
87
86
|
arrow_dataframe: global___ArrowDataframe | None = ...,
|
88
87
|
bytes: builtins.bytes = ...,
|
89
88
|
) -> None: ...
|
90
|
-
def HasField(self, field_name:
|
91
|
-
def ClearField(self, field_name:
|
92
|
-
def WhichOneof(self, oneof_group:
|
89
|
+
def HasField(self, field_name: typing.Literal["arrow_dataframe", b"arrow_dataframe", "bytes", b"bytes", "value", b"value"]) -> builtins.bool: ...
|
90
|
+
def ClearField(self, field_name: typing.Literal["arrow_dataframe", b"arrow_dataframe", "bytes", b"bytes", "key", b"key", "value", b"value"]) -> None: ...
|
91
|
+
def WhichOneof(self, oneof_group: typing.Literal["value", b"value"]) -> typing.Literal["arrow_dataframe", "bytes"] | None: ...
|
93
92
|
|
94
93
|
global___SpecialArg = SpecialArg
|
95
94
|
|
95
|
+
@typing.final
|
96
96
|
class ArrowDataframe(google.protobuf.message.Message):
|
97
97
|
"""Components uses Apache Arrow for dataframe serialization.
|
98
98
|
This is distinct from `Arrow.proto`: Components was created before
|
@@ -105,10 +105,10 @@ class ArrowDataframe(google.protobuf.message.Message):
|
|
105
105
|
DATA_FIELD_NUMBER: builtins.int
|
106
106
|
HEIGHT_FIELD_NUMBER: builtins.int
|
107
107
|
WIDTH_FIELD_NUMBER: builtins.int
|
108
|
-
@property
|
109
|
-
def data(self) -> global___ArrowTable: ...
|
110
108
|
height: builtins.int
|
111
109
|
width: builtins.int
|
110
|
+
@property
|
111
|
+
def data(self) -> global___ArrowTable: ...
|
112
112
|
def __init__(
|
113
113
|
self,
|
114
114
|
*,
|
@@ -116,11 +116,12 @@ class ArrowDataframe(google.protobuf.message.Message):
|
|
116
116
|
height: builtins.int = ...,
|
117
117
|
width: builtins.int = ...,
|
118
118
|
) -> None: ...
|
119
|
-
def HasField(self, field_name:
|
120
|
-
def ClearField(self, field_name:
|
119
|
+
def HasField(self, field_name: typing.Literal["data", b"data"]) -> builtins.bool: ...
|
120
|
+
def ClearField(self, field_name: typing.Literal["data", b"data", "height", b"height", "width", b"width"]) -> None: ...
|
121
121
|
|
122
122
|
global___ArrowDataframe = ArrowDataframe
|
123
123
|
|
124
|
+
@typing.final
|
124
125
|
class ArrowTable(google.protobuf.message.Message):
|
125
126
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
126
127
|
|
@@ -141,11 +142,12 @@ class ArrowTable(google.protobuf.message.Message):
|
|
141
142
|
columns: builtins.bytes = ...,
|
142
143
|
styler: global___ArrowTableStyler | None = ...,
|
143
144
|
) -> None: ...
|
144
|
-
def HasField(self, field_name:
|
145
|
-
def ClearField(self, field_name:
|
145
|
+
def HasField(self, field_name: typing.Literal["styler", b"styler"]) -> builtins.bool: ...
|
146
|
+
def ClearField(self, field_name: typing.Literal["columns", b"columns", "data", b"data", "index", b"index", "styler", b"styler"]) -> None: ...
|
146
147
|
|
147
148
|
global___ArrowTable = ArrowTable
|
148
149
|
|
150
|
+
@typing.final
|
149
151
|
class ArrowTableStyler(google.protobuf.message.Message):
|
150
152
|
DESCRIPTOR: google.protobuf.descriptor.Descriptor
|
151
153
|
|
@@ -165,6 +167,6 @@ class ArrowTableStyler(google.protobuf.message.Message):
|
|
165
167
|
styles: builtins.str = ...,
|
166
168
|
display_values: builtins.bytes = ...,
|
167
169
|
) -> None: ...
|
168
|
-
def ClearField(self, field_name:
|
170
|
+
def ClearField(self, field_name: typing.Literal["caption", b"caption", "display_values", b"display_values", "styles", b"styles", "uuid", b"uuid"]) -> None: ...
|
169
171
|
|
170
172
|
global___ArrowTableStyler = ArrowTableStyler
|
streamlit/proto/DataFrame_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/DataFrame.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,40 +17,40 @@ from streamlit.proto import Common_pb2 as streamlit_dot_proto_dot_Common__pb2
|
|
16
17
|
|
17
18
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1fstreamlit/proto/DataFrame.proto\x1a\x1cstreamlit/proto/Common.proto\"m\n\tDataFrame\x12\x14\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x06.Table\x12\x15\n\x05index\x18\x02 \x01(\x0b\x32\x06.Index\x12\x17\n\x07\x63olumns\x18\x03 \x01(\x0b\x32\x06.Index\x12\x1a\n\x05style\x18\x04 \x01(\x0b\x32\x0b.TableStyle\"\x9f\x02\n\x05Index\x12\"\n\x0bplain_index\x18\x01 \x01(\x0b\x32\x0b.PlainIndexH\x00\x12\"\n\x0brange_index\x18\x02 \x01(\x0b\x32\x0b.RangeIndexH\x00\x12\"\n\x0bmulti_index\x18\x04 \x01(\x0b\x32\x0b.MultiIndexH\x00\x12(\n\x0e\x64\x61tetime_index\x18\x06 \x01(\x0b\x32\x0e.DatetimeIndexH\x00\x12*\n\x0ftimedelta_index\x18\x07 \x01(\x0b\x32\x0f.TimedeltaIndexH\x00\x12#\n\x0cint_64_index\x18\t \x01(\x0b\x32\x0b.Int64IndexH\x00\x12\'\n\x0e\x66loat_64_index\x18\x0b \x01(\x0b\x32\r.Float64IndexH\x00\x42\x06\n\x04type\"%\n\nPlainIndex\x12\x17\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\t.AnyArray\")\n\nRangeIndex\x12\r\n\x05start\x18\x01 \x01(\x03\x12\x0c\n\x04stop\x18\x02 \x01(\x03\"A\n\nMultiIndex\x12\x16\n\x06levels\x18\x01 \x03(\x0b\x32\x06.Index\x12\x1b\n\x06labels\x18\x02 \x03(\x0b\x32\x0b.Int32Array\"+\n\rDatetimeIndex\x12\x1a\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x0c.StringArray\"+\n\x0eTimedeltaIndex\x12\x19\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x0b.Int64Array\"\'\n\nInt64Index\x12\x19\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x0b.Int64Array\"*\n\x0c\x46loat64Index\x12\x1a\n\x04\x64\x61ta\x18\x01 \x01(\x0b\x32\x0c.DoubleArray\"+\n\x08\x43SSStyle\x12\x10\n\x08property\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t\"U\n\tCellStyle\x12\x16\n\x03\x63ss\x18\x01 \x03(\x0b\x32\t.CSSStyle\x12\x15\n\rdisplay_value\x18\x02 \x01(\t\x12\x19\n\x11has_display_value\x18\x03 \x01(\x08\",\n\x0e\x43\x65llStyleArray\x12\x1a\n\x06styles\x18\x01 \x03(\x0b\x32\n.CellStyle\"\xb9\x01\n\x08\x41nyArray\x12\x1f\n\x07strings\x18\x01 \x01(\x0b\x32\x0c.StringArrayH\x00\x12\x1f\n\x07\x64oubles\x18\x02 \x01(\x0b\x32\x0c.DoubleArrayH\x00\x12\x1d\n\x06int64s\x18\x03 \x01(\x0b\x32\x0b.Int64ArrayH\x00\x12!\n\tdatetimes\x18\x04 \x01(\x0b\x32\x0c.StringArrayH\x00\x12!\n\ntimedeltas\x18\x05 \x01(\x0b\x32\x0b.Int64ArrayH\x00\x42\x06\n\x04type\" \n\x05Table\x12\x17\n\x04\x63ols\x18\x01 \x03(\x0b\x32\t.AnyArray\"+\n\nTableStyle\x12\x1d\n\x04\x63ols\x18\x01 \x03(\x0b\x32\x0f.CellStyleArrayB.\n\x1c\x63om.snowflake.apps.streamlitB\x0e\x44\x61taFrameProtob\x06proto3')
|
18
19
|
|
19
|
-
|
20
|
-
_builder.
|
21
|
-
|
22
|
-
|
23
|
-
DESCRIPTOR.
|
24
|
-
DESCRIPTOR._serialized_options = b'\n\034com.snowflake.apps.streamlitB\016DataFrameProto'
|
25
|
-
_DATAFRAME._serialized_start=65
|
26
|
-
_DATAFRAME._serialized_end=174
|
27
|
-
_INDEX._serialized_start=177
|
28
|
-
_INDEX._serialized_end=464
|
29
|
-
_PLAININDEX._serialized_start=466
|
30
|
-
_PLAININDEX._serialized_end=503
|
31
|
-
_RANGEINDEX._serialized_start=505
|
32
|
-
_RANGEINDEX._serialized_end=546
|
33
|
-
_MULTIINDEX._serialized_start=548
|
34
|
-
_MULTIINDEX._serialized_end=613
|
35
|
-
_DATETIMEINDEX._serialized_start=615
|
36
|
-
_DATETIMEINDEX._serialized_end=658
|
37
|
-
_TIMEDELTAINDEX._serialized_start=660
|
38
|
-
_TIMEDELTAINDEX._serialized_end=703
|
39
|
-
_INT64INDEX._serialized_start=705
|
40
|
-
_INT64INDEX._serialized_end=744
|
41
|
-
_FLOAT64INDEX._serialized_start=746
|
42
|
-
_FLOAT64INDEX._serialized_end=788
|
43
|
-
_CSSSTYLE._serialized_start=790
|
44
|
-
_CSSSTYLE._serialized_end=833
|
45
|
-
_CELLSTYLE._serialized_start=835
|
46
|
-
_CELLSTYLE._serialized_end=920
|
47
|
-
_CELLSTYLEARRAY._serialized_start=922
|
48
|
-
_CELLSTYLEARRAY._serialized_end=966
|
49
|
-
_ANYARRAY._serialized_start=969
|
50
|
-
_ANYARRAY._serialized_end=1154
|
51
|
-
_TABLE._serialized_start=1156
|
52
|
-
_TABLE._serialized_end=1188
|
53
|
-
_TABLESTYLE._serialized_start=1190
|
54
|
-
_TABLESTYLE._serialized_end=1233
|
20
|
+
_globals = globals()
|
21
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
22
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'streamlit.proto.DataFrame_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\016DataFrameProto'
|
26
|
+
_globals['_DATAFRAME']._serialized_start=65
|
27
|
+
_globals['_DATAFRAME']._serialized_end=174
|
28
|
+
_globals['_INDEX']._serialized_start=177
|
29
|
+
_globals['_INDEX']._serialized_end=464
|
30
|
+
_globals['_PLAININDEX']._serialized_start=466
|
31
|
+
_globals['_PLAININDEX']._serialized_end=503
|
32
|
+
_globals['_RANGEINDEX']._serialized_start=505
|
33
|
+
_globals['_RANGEINDEX']._serialized_end=546
|
34
|
+
_globals['_MULTIINDEX']._serialized_start=548
|
35
|
+
_globals['_MULTIINDEX']._serialized_end=613
|
36
|
+
_globals['_DATETIMEINDEX']._serialized_start=615
|
37
|
+
_globals['_DATETIMEINDEX']._serialized_end=658
|
38
|
+
_globals['_TIMEDELTAINDEX']._serialized_start=660
|
39
|
+
_globals['_TIMEDELTAINDEX']._serialized_end=703
|
40
|
+
_globals['_INT64INDEX']._serialized_start=705
|
41
|
+
_globals['_INT64INDEX']._serialized_end=744
|
42
|
+
_globals['_FLOAT64INDEX']._serialized_start=746
|
43
|
+
_globals['_FLOAT64INDEX']._serialized_end=788
|
44
|
+
_globals['_CSSSTYLE']._serialized_start=790
|
45
|
+
_globals['_CSSSTYLE']._serialized_end=833
|
46
|
+
_globals['_CELLSTYLE']._serialized_start=835
|
47
|
+
_globals['_CELLSTYLE']._serialized_end=920
|
48
|
+
_globals['_CELLSTYLEARRAY']._serialized_start=922
|
49
|
+
_globals['_CELLSTYLEARRAY']._serialized_end=966
|
50
|
+
_globals['_ANYARRAY']._serialized_start=969
|
51
|
+
_globals['_ANYARRAY']._serialized_end=1154
|
52
|
+
_globals['_TABLE']._serialized_start=1156
|
53
|
+
_globals['_TABLE']._serialized_end=1188
|
54
|
+
_globals['_TABLESTYLE']._serialized_start=1190
|
55
|
+
_globals['_TABLESTYLE']._serialized_end=1233
|
55
56
|
# @@protoc_insertion_point(module_scope)
|