panel.io.admin module#

class panel.io.admin.Data(*, data, name)[source]#

Bases: Parameterized

Parameter Definitions


data = List(bounds=(0, None), default=[], label='Data')

class panel.io.admin.LogDataHandler(data)[source]#

Bases: StreamHandler

emit(record)[source]#

Emit a record.

If a formatter is specified, it is used to format the record. The record is then written to the stream with a trailing newline. If exception information is present, it is formatted using traceback.print_exception and appended to the stream. If the stream has an ‘encoding’ attribute, it is used to determine how to do the output to the stream.

class panel.io.admin.LogFilter(name='')[source]#

Bases: Filter

filter(record)[source]#

Determine if the specified record is to be logged.

Returns True if the record should be logged, or False otherwise. If deemed appropriate, the record may be modified in-place.