Table

class awe.view.Table[source]
clear()[source]

Clear all table rows.

set(rows)[source]

Override existing table rows with new rows.

Parameters:rows – The rows to set.
append(row)[source]

Append a row.

Parameters:row – The row to append.
prepend(row)[source]

Prepend a row.

Parameters:row – The row to prepend.
extend(rows)[source]

Append several rows in one call.

Parameters:rows – The rows to append.