gnetclisdk 1.0.37__py3-none-any.whl → 1.0.39__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.
gnetclisdk/client.py CHANGED
@@ -243,8 +243,11 @@ class Gnetcli:
243
243
  await grpc_call_wrapper(stub.SetupHostParams, pbcmd)
244
244
  return
245
245
 
246
- async def upload(self, hostname: str, files: Dict[str, File]) -> None:
247
- pbcmd = server_pb2.FileUploadRequest(host=hostname, files=make_files_request(files))
246
+ async def upload(self, hostname: str, files: Dict[str, File], host_params: Optional[HostParams] = None) -> None:
247
+ host_params_pb: Optional[server_pb2.HostParams] = None
248
+ if host_params:
249
+ host_params_pb = host_params.make_pb()
250
+ pbcmd = server_pb2.FileUploadRequest(host=hostname, files=make_files_request(files), host_params=host_params_pb)
248
251
  _logger.debug("connect to %s", self._server)
249
252
  async with self._grpc_channel_fn(self._server, options=self._options) as channel:
250
253
  _logger.debug("upload %s to %s", files.keys(), hostname)
@@ -253,8 +256,11 @@ class Gnetcli:
253
256
  _logger.debug("upload res %s", response)
254
257
  return
255
258
 
256
- async def download(self, hostname: str, paths: List[str]) -> Dict[str, File]:
257
- pbcmd = server_pb2.FileDownloadRequest(host=hostname, paths=paths)
259
+ async def download(self, hostname: str, paths: List[str], host_params: Optional[HostParams] = None) -> Dict[str, File]:
260
+ host_params_pb: Optional[server_pb2.HostParams] = None
261
+ if host_params:
262
+ host_params_pb = host_params.make_pb()
263
+ pbcmd = server_pb2.FileDownloadRequest(host=hostname, paths=paths, host_params=host_params_pb)
258
264
  _logger.debug("connect to %s", self._server)
259
265
  async with self._grpc_channel_fn(self._server, options=self._options) as channel:
260
266
  _logger.debug("download %s from %s", paths, hostname)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: gnetclisdk
3
- Version: 1.0.37
3
+ Version: 1.0.39
4
4
  Summary: Client for Gnetcli GRPC-server
5
5
  Home-page: https://github.com/annetutil/gnetcli
6
6
  Author: Alexander Balezin
@@ -1,11 +1,11 @@
1
1
  gnetclisdk/auth.py,sha256=GwM7H7Ecb-gwqUTkQorifNB_mtnZfgeS46gOW2Vx1U4,1246
2
- gnetclisdk/client.py,sha256=xtDbGJ3voTadmR7lt8WC-LKcBzk1v_otnaqG3LzKZjE,17899
2
+ gnetclisdk/client.py,sha256=AyVsCNee-dVb5SBl0P0TUn-vYr5K03fv57SjoZiKPeE,18315
3
3
  gnetclisdk/exceptions.py,sha256=d0Bcq8tnAzemCuCCrGJEmL_A1IQxCCLFRCwDhr9zvkU,2683
4
4
  gnetclisdk/interceptors.py,sha256=apj3l4lnR2ZcsA49odptrBC0kTDmP6Mp0EzYkeEJz9Y,7010
5
5
  gnetclisdk/proto/server_pb2.py,sha256=YL1_7wubJbSp97OeRZ_L9qJjbM2U-PMcfOg-_QpkjWs,8360
6
6
  gnetclisdk/proto/server_pb2.pyi,sha256=th-HnFVkR1ZEY-XmFmk8VMfDj_4uFAoSAXH61mSlVec,8295
7
7
  gnetclisdk/proto/server_pb2_grpc.py,sha256=rjuNEIfeqwFw99oSiWUyvNKCKPgITJZKcL8pQPbUQvM,14967
8
- gnetclisdk-1.0.37.dist-info/METADATA,sha256=TWi5Ypi2O7m69bDoaqyB77guJBQ4caeicAQndFvBCnw,1434
9
- gnetclisdk-1.0.37.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
10
- gnetclisdk-1.0.37.dist-info/top_level.txt,sha256=MNjS8LEt6d2rZ-dUbV2cnqkuTMu3EqEL2eiSvUZuUlA,11
11
- gnetclisdk-1.0.37.dist-info/RECORD,,
8
+ gnetclisdk-1.0.39.dist-info/METADATA,sha256=HxAZ49TY-3Ub4nRBneXbk7HUP6Jb8SrgXgQwAiGxamE,1434
9
+ gnetclisdk-1.0.39.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
10
+ gnetclisdk-1.0.39.dist-info/top_level.txt,sha256=MNjS8LEt6d2rZ-dUbV2cnqkuTMu3EqEL2eiSvUZuUlA,11
11
+ gnetclisdk-1.0.39.dist-info/RECORD,,