Writer Formats

writer_formats()

canlib.kvlclib.writer_formats()[source]

Return a generator of all writer formats.

New in version 1.7.

WriterFormat

class canlib.kvlclib.WriterFormat(id_)[source]

Helper class that encapsulates a Writer.

You may list available Writers using:

for format in kvlclib.writer_formats():
    print(format)
classmethod getFirstWriterFormat()[source]

Get the first supported output format.

classmethod getNextWriterFormat(previous_id)[source]

Get the next supported output format.

getPropertyDefault(wr_property)[source]

Get default value for property.

isPropertySupported(wr_property)[source]

Check if specified write property is supported.

Retuns True if the property is supported by output format.

Parameters

wr_property (canlib.kvlclib.Property) – Writer property

Returns

bool