Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/arrow
/ open_append_stream
Method
open_append_stream
python/pyarrow/fs.py:425–428 ·
view source on GitHub ↗
(self, path, metadata)
Source
from the content-addressed store, hash-verified
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
427
428
return
PythonFile(self.fs.open(path, mode=
"ab"
), mode=
"w"
)
Callers
1
test_open_append_stream
Method · 0.45
Calls
2
PythonFile
Class · 0.90
open
Method · 0.45
Tested by
1
test_open_append_stream
Method · 0.36