DelfiniItemWriterCore

class pydelfini.item_io.DelfiniItemWriterCore(collection_id, version_id, item_id, client)[source]

Bases: object

Parameters:
close()[source]

Close and flush the stream, completing the file write.

Return type:

None

fileno()[source]

N/A - not a real file

Raises:

OSError – always

Return type:

int

isatty()[source]

Always False

Return type:

bool

readable()[source]

Always False

Return type:

bool

seek(offset, whence=0)[source]

N/A - not a real file

Raises:

OSError – always

Parameters:
Return type:

int

seekable()[source]

Always False

Return type:

bool

truncate(size=None)[source]

N/A - not a real file

Raises:

OSError – always

Parameters:

size (int | None)

Return type:

int

writable()[source]

Always True

Return type:

bool