-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapis_pb2_grpc.py
More file actions
165 lines (146 loc) · 7.1 KB
/
apis_pb2_grpc.py
File metadata and controls
165 lines (146 loc) · 7.1 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
"""Client and server classes corresponding to protobuf-defined services."""
import grpc
from apis import apis_pb2 as apis_dot_apis__pb2
class ProfileStub(object):
"""Missing associated documentation comment in .proto file."""
def __init__(self, channel):
"""Constructor.
Args:
channel: A grpc.Channel.
"""
self.UserInfo = channel.unary_unary(
'/profile.api.Profile/UserInfo',
request_serializer=apis_dot_apis__pb2.UserInfoRequest.SerializeToString,
response_deserializer=apis_dot_apis__pb2.UserInfoResponse.FromString,
)
self.BatchUserInfo = channel.unary_unary(
'/profile.api.Profile/BatchUserInfo',
request_serializer=apis_dot_apis__pb2.BatchUserInfoRequest.SerializeToString,
response_deserializer=apis_dot_apis__pb2.BatchUserInfoResponse.FromString,
)
self.ActivateUser = channel.unary_unary(
'/profile.api.Profile/ActivateUser',
request_serializer=apis_dot_apis__pb2.ActivateUserRequest.SerializeToString,
response_deserializer=apis_dot_apis__pb2.ActivateUserResponse.FromString,
)
self.BatchFollowStatus = channel.unary_unary(
'/profile.api.Profile/BatchFollowStatus',
request_serializer=apis_dot_apis__pb2.BatchFollowStatusRequest.SerializeToString,
response_deserializer=apis_dot_apis__pb2.BatchFollowStatusResponse.FromString,
)
class ProfileServicer(object):
"""Missing associated documentation comment in .proto file."""
def UserInfo(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def BatchUserInfo(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def ActivateUser(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def BatchFollowStatus(self, request, context):
"""Missing associated documentation comment in .proto file."""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
def add_ProfileServicer_to_server(servicer, server):
rpc_method_handlers = {
'UserInfo': grpc.unary_unary_rpc_method_handler(
servicer.UserInfo,
request_deserializer=apis_dot_apis__pb2.UserInfoRequest.FromString,
response_serializer=apis_dot_apis__pb2.UserInfoResponse.SerializeToString,
),
'BatchUserInfo': grpc.unary_unary_rpc_method_handler(
servicer.BatchUserInfo,
request_deserializer=apis_dot_apis__pb2.BatchUserInfoRequest.FromString,
response_serializer=apis_dot_apis__pb2.BatchUserInfoResponse.SerializeToString,
),
'ActivateUser': grpc.unary_unary_rpc_method_handler(
servicer.ActivateUser,
request_deserializer=apis_dot_apis__pb2.ActivateUserRequest.FromString,
response_serializer=apis_dot_apis__pb2.ActivateUserResponse.SerializeToString,
),
'BatchFollowStatus': grpc.unary_unary_rpc_method_handler(
servicer.BatchFollowStatus,
request_deserializer=apis_dot_apis__pb2.BatchFollowStatusRequest.FromString,
response_serializer=apis_dot_apis__pb2.BatchFollowStatusResponse.SerializeToString,
),
}
generic_handler = grpc.method_handlers_generic_handler(
'profile.api.Profile', rpc_method_handlers)
server.add_generic_rpc_handlers((generic_handler,))
# This class is part of an EXPERIMENTAL API.
class Profile(object):
"""Missing associated documentation comment in .proto file."""
@staticmethod
def UserInfo(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/profile.api.Profile/UserInfo',
apis_dot_apis__pb2.UserInfoRequest.SerializeToString,
apis_dot_apis__pb2.UserInfoResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def BatchUserInfo(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/profile.api.Profile/BatchUserInfo',
apis_dot_apis__pb2.BatchUserInfoRequest.SerializeToString,
apis_dot_apis__pb2.BatchUserInfoResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def ActivateUser(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/profile.api.Profile/ActivateUser',
apis_dot_apis__pb2.ActivateUserRequest.SerializeToString,
apis_dot_apis__pb2.ActivateUserResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)
@staticmethod
def BatchFollowStatus(request,
target,
options=(),
channel_credentials=None,
call_credentials=None,
insecure=False,
compression=None,
wait_for_ready=None,
timeout=None,
metadata=None):
return grpc.experimental.unary_unary(request, target, '/profile.api.Profile/BatchFollowStatus',
apis_dot_apis__pb2.BatchFollowStatusRequest.SerializeToString,
apis_dot_apis__pb2.BatchFollowStatusResponse.FromString,
options, channel_credentials,
insecure, call_credentials, compression, wait_for_ready, timeout, metadata)