MCPcopy Index your code
hub / github.com/marimo-team/marimo / write_bytes

Method write_bytes

marimo/_utils/async_path.py:149–151  ·  view source on GitHub ↗

Write bytes data to the file.

(self, data: bytes)

Source from the content-addressed store, hash-verified

147 )
148
149 async def write_bytes(self, data: bytes) -> int:
150 """Write bytes data to the file."""
151 return await asyncio.to_thread(self._path.write_bytes, data)
152
153 # Directory operations
154

Calls

no outgoing calls