@@ -18,123 +18,93 @@ class _ServicerContext(grpc.ServicerContext, grpc.aio.ServicerContext): # type:
1818 ...
1919
2020class WordstatServiceStub :
21- """Not implemented.
22- A set of methods for viewing statistics on search queries to Yandex.
23- """
21+ """A set of methods for viewing statistics on search queries to Yandex."""
2422
2523 def __init__ (self , channel : typing .Union [grpc .Channel , grpc .aio .Channel ]) -> None : ...
2624 GetTop : grpc .UnaryUnaryMultiCallable [
2725 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetTopRequest ,
2826 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetTopResponse ,
2927 ]
30- """Not implemented.
31- The method returns the last 30 days data about popular queries containing the specified keyword and queries that are similar to the specified one.
32- """
28+ """The method returns the last 30 days data about popular queries containing the specified keyword and queries that are similar to the specified one."""
3329
3430 GetDynamics : grpc .UnaryUnaryMultiCallable [
3531 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetDynamicsRequest ,
3632 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetDynamicsResponse ,
3733 ]
38- """Not implemented.
39- The method returns the frequency of queries over time for a given keyword.
40- """
34+ """The method returns the frequency of queries over time for a given keyword."""
4135
4236 GetRegionsDistribution : grpc .UnaryUnaryMultiCallable [
4337 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsDistributionRequest ,
4438 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsDistributionResponse ,
4539 ]
46- """Not implemented.
47- The method returns the distribution of the number of queries containing the given keyword globally by region for the last 30 days.
48- """
40+ """The method returns the distribution of the number of queries containing the given keyword globally by region for the last 30 days."""
4941
5042 GetRegionsTree : grpc .UnaryUnaryMultiCallable [
5143 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsTreeRequest ,
5244 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsTreeResponse ,
5345 ]
54- """Not implemented.
55- The method method returns a tree of Wordstat-supported regions.
56- """
46+ """The method method returns a tree of Wordstat-supported regions."""
5747
5848class WordstatServiceAsyncStub :
59- """Not implemented.
60- A set of methods for viewing statistics on search queries to Yandex.
61- """
49+ """A set of methods for viewing statistics on search queries to Yandex."""
6250
6351 GetTop : grpc .aio .UnaryUnaryMultiCallable [
6452 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetTopRequest ,
6553 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetTopResponse ,
6654 ]
67- """Not implemented.
68- The method returns the last 30 days data about popular queries containing the specified keyword and queries that are similar to the specified one.
69- """
55+ """The method returns the last 30 days data about popular queries containing the specified keyword and queries that are similar to the specified one."""
7056
7157 GetDynamics : grpc .aio .UnaryUnaryMultiCallable [
7258 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetDynamicsRequest ,
7359 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetDynamicsResponse ,
7460 ]
75- """Not implemented.
76- The method returns the frequency of queries over time for a given keyword.
77- """
61+ """The method returns the frequency of queries over time for a given keyword."""
7862
7963 GetRegionsDistribution : grpc .aio .UnaryUnaryMultiCallable [
8064 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsDistributionRequest ,
8165 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsDistributionResponse ,
8266 ]
83- """Not implemented.
84- The method returns the distribution of the number of queries containing the given keyword globally by region for the last 30 days.
85- """
67+ """The method returns the distribution of the number of queries containing the given keyword globally by region for the last 30 days."""
8668
8769 GetRegionsTree : grpc .aio .UnaryUnaryMultiCallable [
8870 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsTreeRequest ,
8971 yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsTreeResponse ,
9072 ]
91- """Not implemented.
92- The method method returns a tree of Wordstat-supported regions.
93- """
73+ """The method method returns a tree of Wordstat-supported regions."""
9474
9575class WordstatServiceServicer (metaclass = abc .ABCMeta ):
96- """Not implemented.
97- A set of methods for viewing statistics on search queries to Yandex.
98- """
76+ """A set of methods for viewing statistics on search queries to Yandex."""
9977
10078 @abc .abstractmethod
10179 def GetTop (
10280 self ,
10381 request : yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetTopRequest ,
10482 context : _ServicerContext ,
10583 ) -> typing .Union [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetTopResponse , collections .abc .Awaitable [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetTopResponse ]]:
106- """Not implemented.
107- The method returns the last 30 days data about popular queries containing the specified keyword and queries that are similar to the specified one.
108- """
84+ """The method returns the last 30 days data about popular queries containing the specified keyword and queries that are similar to the specified one."""
10985
11086 @abc .abstractmethod
11187 def GetDynamics (
11288 self ,
11389 request : yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetDynamicsRequest ,
11490 context : _ServicerContext ,
11591 ) -> typing .Union [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetDynamicsResponse , collections .abc .Awaitable [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetDynamicsResponse ]]:
116- """Not implemented.
117- The method returns the frequency of queries over time for a given keyword.
118- """
92+ """The method returns the frequency of queries over time for a given keyword."""
11993
12094 @abc .abstractmethod
12195 def GetRegionsDistribution (
12296 self ,
12397 request : yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsDistributionRequest ,
12498 context : _ServicerContext ,
12599 ) -> typing .Union [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsDistributionResponse , collections .abc .Awaitable [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsDistributionResponse ]]:
126- """Not implemented.
127- The method returns the distribution of the number of queries containing the given keyword globally by region for the last 30 days.
128- """
100+ """The method returns the distribution of the number of queries containing the given keyword globally by region for the last 30 days."""
129101
130102 @abc .abstractmethod
131103 def GetRegionsTree (
132104 self ,
133105 request : yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsTreeRequest ,
134106 context : _ServicerContext ,
135107 ) -> typing .Union [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsTreeResponse , collections .abc .Awaitable [yandex .cloud .searchapi .v2 .wordstat_service_pb2 .GetRegionsTreeResponse ]]:
136- """Not implemented.
137- The method method returns a tree of Wordstat-supported regions.
138- """
108+ """The method method returns a tree of Wordstat-supported regions."""
139109
140110def add_WordstatServiceServicer_to_server (servicer : WordstatServiceServicer , server : typing .Union [grpc .Server , grpc .aio .Server ]) -> None : ...
0 commit comments