MCPcopy Index your code
hub / github.com/CloudPolis/webdav-client-python / write

Method write

webdav/client.py:1099–1100  ·  view source on GitHub ↗
(self, local_path)

Source from the content-addressed store, hash-verified

1097 return self.client.download_to(buff=buff, remote_path=self.urn.path())
1098
1099 def write(self, local_path):
1100 return self.client.download_sync(local_path=local_path, remote_path=self.urn.path())
1101
1102 def write_async(self, local_path, callback=None):
1103 return self.client.download_async(local_path=local_path, remote_path=self.urn.path(), callback=callback)

Callers 1

dataMethod · 0.80

Calls 2

download_syncMethod · 0.80
pathMethod · 0.80

Tested by

no test coverage detected