election_day.models.election_compound.part ========================================== .. py:module:: election_day.models.election_compound.part Attributes ---------- .. autoapisummary:: election_day.models.election_compound.part.T Classes ------- .. autoapisummary:: election_day.models.election_compound.part.inherited_attribute election_day.models.election_compound.part.ElectionCompoundPart Module Contents --------------- .. py:data:: T .. py:class:: inherited_attribute Bases: :py:obj:`Generic`\ [\ :py:obj:`T`\ ] 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:method:: __set_name__(owner: type[Any], name: str) -> None .. py:method:: __get__(instance: Any, owner: type[Any]) -> T .. py:class:: ElectionCompoundPart(election_compound: onegov.election_day.models.ElectionCompound, domain: str, segment: str) Bases: :py:obj:`onegov.election_day.models.election_compound.mixins.DerivedAttributesMixin`, :py:obj:`onegov.election_day.models.party_result.mixins.PartyResultsCheckMixin`, :py:obj:`onegov.election_day.models.party_result.mixins.HistoricalPartyResultsMixin` A part of an election compound. Covers a part of an election compound between the domain of the compound and the domain of the elections. There is no database object behind a part of an election compound, all the results are either taken from the compound (parties) or elections (candidates)- .. py:attribute:: election_compound .. py:attribute:: election_compound_id .. py:attribute:: domain .. py:attribute:: segment .. py:attribute:: id .. py:method:: __eq__(other: object) -> bool .. py:attribute:: date :type: inherited_attribute[datetime.date] .. py:attribute:: completes_manually :type: inherited_attribute[bool] .. py:attribute:: manually_completed :type: inherited_attribute[bool] .. py:attribute:: pukelsheim .. py:attribute:: last_result_change .. py:attribute:: last_change .. py:attribute:: last_modified .. py:attribute:: domain_elections .. py:attribute:: colors .. py:attribute:: voters_counts .. py:attribute:: exact_voters_counts .. py:attribute:: horizontal_party_strengths .. py:attribute:: show_party_strengths .. py:attribute:: use_historical_party_results .. py:attribute:: session_manager .. py:property:: title :type: str .. py:property:: short_title :type: str | None .. py:property:: title_translations :type: dict[str, str] .. py:property:: short_title_translations :type: dict[str, str] .. py:property:: elections :type: list[onegov.election_day.models.Election] .. py:property:: progress :type: tuple[int, int] .. py:property:: party_results :type: list[onegov.election_day.models.PartyResult] .. py:property:: has_results :type: bool Returns True, if the election compound has any results. .. py:property:: elected_candidates :type: list[tuple[str, str]] Returns the first and last names of the elected candidates. .. py:property:: relationships_for_historical_party_results :type: sqlalchemy.orm.Query[onegov.election_day.models.ElectionCompoundRelationship]