cagey.Row#

class cagey.Row(id, item)[source]#

Bases: Generic[T]

A row in a database table.

Parameters:
  • id (int) – The id of the row.

  • item (T) – The item in the row.

Methods

Attributes

id

The id of the row.

item

The item in the row.

id: int#

The id of the row.

item: T#

The item in the row.