gnetclisdk 1.0.58__tar.gz → 1.0.59__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gnetclisdk
3
- Version: 1.0.58
3
+ Version: 1.0.59
4
4
  Summary: Client for Gnetcli GRPC-server
5
5
  Home-page: https://github.com/annetutil/gnetcli
6
6
  Author: Alexander Balezin
@@ -200,10 +200,14 @@ class Gnetcli:
200
200
  return response
201
201
 
202
202
  @asynccontextmanager
203
- async def cmd_session(self, hostname: str) -> AsyncIterator["GnetcliSessionCmd"]:
203
+ async def cmd_session(
204
+ self,
205
+ hostname: str,
206
+ host_params: Optional[HostParams] = None) -> AsyncIterator["GnetcliSessionCmd"]:
204
207
  sess = GnetcliSessionCmd(
205
208
  hostname,
206
209
  server=self._server,
210
+ host_params=host_params,
207
211
  channel=self._channel,
208
212
  target_name_override=self._target_name_override,
209
213
  user_agent=self._user_agent,
@@ -374,6 +378,34 @@ class GnetcliSession(ABC):
374
378
 
375
379
 
376
380
  class GnetcliSessionCmd(GnetcliSession):
381
+ def __init__(
382
+ self,
383
+ hostname: str,
384
+ token: str | None = None,
385
+ server: str = DEFAULT_SERVER,
386
+ target_name_override: Optional[str] = None,
387
+ cert_file: Optional[str] = None,
388
+ user_agent: str = DEFAULT_USER_AGENT,
389
+ insecure_grpc: bool = False,
390
+ channel: Optional[grpc.aio.Channel] = None,
391
+ credentials: Optional[Credentials] = None,
392
+ host_params: Optional[HostParams] = None,
393
+ _grpc_channel_fn: Optional[Callable] = None,
394
+ ):
395
+ super(GnetcliSessionCmd, self).__init__(
396
+ hostname,
397
+ token,
398
+ server,
399
+ target_name_override,
400
+ cert_file,
401
+ user_agent,
402
+ insecure_grpc,
403
+ channel,
404
+ credentials,
405
+ _grpc_channel_fn,
406
+ )
407
+ self.host_params = host_params
408
+
377
409
  async def cmd(
378
410
  self,
379
411
  cmd: str,
@@ -391,7 +423,7 @@ class GnetcliSessionCmd(GnetcliSession):
391
423
  qa=qa,
392
424
  read_timeout=read_timeout,
393
425
  cmd_timeout=cmd_timeout,
394
- host_params=host_params,
426
+ host_params=host_params if host_params else self.host_params,
395
427
  )
396
428
  return await self._cmd(pbcmd)
397
429
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: gnetclisdk
3
- Version: 1.0.58
3
+ Version: 1.0.59
4
4
  Summary: Client for Gnetcli GRPC-server
5
5
  Home-page: https://github.com/annetutil/gnetcli
6
6
  Author: Alexander Balezin
File without changes
File without changes
File without changes
File without changes
File without changes