election_day.formats.imports.party_result.internal ================================================== .. py:module:: election_day.formats.imports.party_result.internal Attributes ---------- .. autoapisummary:: election_day.formats.imports.party_result.internal.ELECTION_PARTY_HEADERS Functions --------- .. autoapisummary:: election_day.formats.imports.party_result.internal.parse_domain election_day.formats.imports.party_result.internal.parse_party_result election_day.formats.imports.party_result.internal.parse_panachage_headers election_day.formats.imports.party_result.internal.parse_panachage_results election_day.formats.imports.party_result.internal.import_party_results_internal Module Contents --------------- .. py:data:: ELECTION_PARTY_HEADERS :value: ('year', 'name', 'id', 'color') .. py:function:: parse_domain(line: onegov.core.csv.DefaultRow, errors: list[str], election: onegov.election_day.models.ProporzElection | onegov.election_day.models.ElectionCompound, principal: onegov.election_day.models.Canton | onegov.election_day.models.Municipality, election_year: int) -> tuple[bool, str | None, str | None] Parse domain and domain segment. Also indicate, if line should be skipped. .. py:function:: parse_party_result(line: onegov.core.csv.DefaultRow, errors: list[str], party_results: dict[str, onegov.election_day.models.PartyResult], totals: dict[int, dict[tuple[str | None, str | None], int | None]], parties: set[str], election_year: int, locales: collections.abc.Collection[str], default_locale: str, colors: dict[str, str], domain: str | None, domain_segment: str | None) -> None .. py:function:: parse_panachage_headers(csv: onegov.core.csv.DefaultCSVFile) -> dict[str, str] .. py:function:: parse_panachage_results(line: onegov.core.csv.DefaultRow, errors: list[str], results: dict[str, dict[str, int]], headers: dict[str, str], election_year: int) -> None .. py:function:: import_party_results_internal(election: onegov.election_day.models.ProporzElection | onegov.election_day.models.ElectionCompound, principal: onegov.election_day.models.Canton | onegov.election_day.models.Municipality, file: IO[bytes], mimetype: str, locales: collections.abc.Collection[str], default_locale: str) -> list[onegov.election_day.formats.imports.common.FileImportError] Tries to import the given file. This is our own format used for party results. Supports per party panachage data. Stores the panachage results from the blank list with a blank name. :return: A list containing errors.