(self, local_path)
| 1088 | self.client.upload_from(buff=buff, remote_path=self.urn.path()) |
| 1089 | |
| 1090 | def read(self, local_path): |
| 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) |
no test coverage detected