parliament.collections.commission ================================= .. py:module:: parliament.collections.commission Attributes ---------- .. autoapisummary:: parliament.collections.commission.CommissionT Classes ------- .. autoapisummary:: parliament.collections.commission.CommissionCollection parliament.collections.commission.RISCommissionCollection Module Contents --------------- .. py:data:: CommissionT .. py:class:: CommissionCollection(session: sqlalchemy.orm.Session, active: bool | None = None) Bases: :py:obj:`onegov.core.collection.GenericCollection`\ [\ :py:obj:`CommissionT`\ ] Abstract base class for generic types. A generic type is typically declared by inheriting from this class parameterized with one or more type variables. For example, a generic mapping type might be defined as:: class Mapping(Generic[KT, VT]): def __getitem__(self, key: KT) -> VT: ... # Etc. This class can then be used as follows:: def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: try: return mapping[key] except KeyError: return default .. py:attribute:: active :value: None .. py:property:: model_class :type: type[CommissionT] .. py:method:: query() -> sqlalchemy.orm.Query[CommissionT] .. py:method:: for_filter(active: bool | None = None) -> Self .. py:class:: RISCommissionCollection(session: sqlalchemy.orm.Session, active: bool | None = None) Bases: :py:obj:`CommissionCollection`\ [\ :py:obj:`onegov.parliament.models.RISCommission`\ ] Abstract base class for generic types. A generic type is typically declared by inheriting from this class parameterized with one or more type variables. For example, a generic mapping type might be defined as:: class Mapping(Generic[KT, VT]): def __getitem__(self, key: KT) -> VT: ... # Etc. This class can then be used as follows:: def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: try: return mapping[key] except KeyError: return default .. py:property:: model_class :type: type[onegov.parliament.models.RISCommission]