Write bytes to the uploaded file object. Args: data: Bytes to write.
(self, data: bytes)
| 139 | return await self._upload_file.read(size) |
| 140 | |
| 141 | async def write(self, data: bytes) -> None: |
| 142 | """Write bytes to the uploaded file object. |
| 143 | |
| 144 | Args: |
| 145 | data: Bytes to write. |
| 146 | """ |
| 147 | await self._upload_file.write(data) |
| 148 | |
| 149 | async def seek(self, offset: int) -> None: |
| 150 | """Move the uploaded file cursor. |
no outgoing calls