MCPcopy Create free account
hub / github.com/apache/arrow / open_output_stream

Method open_output_stream

python/pyarrow/fs.py:420–423  ·  view source on GitHub ↗
(self, path, metadata)

Source from the content-addressed store, hash-verified

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

Callers 5

create_fileMethod · 0.45
setupMethod · 0.45
add_fsFunction · 0.45

Calls 2

PythonFileClass · 0.90
openMethod · 0.45

Tested by 5

create_fileMethod · 0.36
setupMethod · 0.36
add_fsFunction · 0.36