This repository was archived by the owner on Mar 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy path__init__.py
More file actions
56 lines (53 loc) · 1.74 KB
/
__init__.py
File metadata and controls
56 lines (53 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright 2018 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from gapic.utils.cache import cached_property
from gapic.utils.cache import cached_proto_context
from gapic.utils.case import to_snake_case
from gapic.utils.case import to_camel_case
from gapic.utils.checks import is_msg_field_pb
from gapic.utils.checks import is_str_field_pb
from gapic.utils.code import empty
from gapic.utils.code import nth
from gapic.utils.code import partition
from gapic.utils.code import make_private
from gapic.utils.doc import doc
from gapic.utils.filename import to_valid_filename
from gapic.utils.filename import to_valid_module_name
from gapic.utils.lines import sort_lines
from gapic.utils.lines import wrap
from gapic.utils.options import Options
from gapic.utils.reserved_names import RESERVED_NAMES
from gapic.utils.rst import rst
from gapic.utils.uri_conv import convert_uri_fieldnames
__all__ = (
"cached_property",
"cached_proto_context",
"convert_uri_fieldnames",
"doc",
"empty",
"is_msg_field_pb",
"is_str_field_pb",
"make_private",
"nth",
"Options",
"partition",
"RESERVED_NAMES",
"rst",
"sort_lines",
"to_snake_case",
"to_camel_case",
"to_valid_filename",
"to_valid_module_name",
"wrap",
)