(self, path, metadata)
| 418 | return PythonFile(self.fs.open(path, mode="rb"), mode="r") |
| 419 | |
| 420 | def open_output_stream(self, path, metadata): |
| 421 | from pyarrow import PythonFile |
| 422 | |
| 423 | return PythonFile(self.fs.open(path, mode="wb"), mode="w") |
| 424 | |
| 425 | def open_append_stream(self, path, metadata): |
| 426 | from pyarrow import PythonFile |