meshroom.nodes.aliceVision.SketchfabUpload.BufferReader

Inheritance diagram of meshroom.nodes.aliceVision.SketchfabUpload.BufferReader
class meshroom.nodes.aliceVision.SketchfabUpload.BufferReader(buf=b'', callback=None, cb_args=(), cb_kwargs={}, stopped=None)
__init__(buf=b'', callback=None, cb_args=(), cb_kwargs={}, stopped=None)

Methods

__init__([buf, callback, cb_args, ...])

close()

Disable all I/O operations.

detach()

Disconnect this buffer from its underlying raw stream and return it.

fileno()

Returns underlying file descriptor if one exists.

flush()

Does nothing.

getbuffer()

Get a read-write view over the contents of the BytesIO object.

getvalue()

Retrieve the entire contents of the BytesIO object.

isatty()

Always returns False.

read([n])

Read at most size bytes, returned as a bytes object.

read1([size])

Read at most size bytes, returned as a bytes object.

readable()

Returns True if the IO object can be read.

readinto(buffer, /)

Read bytes into buffer.

readinto1(buffer, /)

readline([size])

Next line from the file, as a bytes object.

readlines([size])

List of bytes objects, each a line from the file.

seek(pos[, whence])

Change stream position.

seekable()

Returns True if the IO object can be seeked.

tell()

Current file position, an integer.

truncate([size])

Truncate the file to at most size bytes.

writable()

Returns True if the IO object can be written.

write(b, /)

Write bytes to file.

writelines(lines, /)

Write lines to the file.

Attributes

closed

True if the file is closed.