snowflake.snowpark.files.SnowflakeFile.readinto

SnowflakeFile.readinto(b: bytes | bytearray | array.array) int[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.38.0/src/snowflake/snowpark/files.py#L345-L361)

From https://docs.python.org/3/library/io.html#io.RawIOBase.readinto (https://docs.python.org/3/library/io.html#io.RawIOBase.readinto)

Read bytes into a pre-allocated, writable bytes-like object b, and return the number of bytes read. For example, b might be a bytearray.

Language: English