MCPcopy Create free account
hub / github.com/CloudPolis/webdav-client-python / read_async

Method read_async

webdav/client.py:1093–1094  ·  view source on GitHub ↗
(self, local_path, callback=None)

Source from the content-addressed store, hash-verified

1091 return self.client.upload_sync(local_path=local_path, remote_path=self.urn.path())
1092
1093 def read_async(self, local_path, callback=None):
1094 return self.client.upload_async(local_path=local_path, remote_path=self.urn.path(), callback=callback)
1095
1096 def write_to(self, buff):
1097 return self.client.download_to(buff=buff, remote_path=self.urn.path())

Callers

nothing calls this directly

Calls 2

upload_asyncMethod · 0.80
pathMethod · 0.80

Tested by

no test coverage detected