pas.data_import =============== .. py:module:: pas.data_import Attributes ---------- .. autoapisummary:: pas.data_import.T pas.data_import.P pas.data_import.EXPECTED_HEADERS Classes ------- .. autoapisummary:: pas.data_import.Row pas.data_import.ImportFile pas.data_import.HeaderValidationResult Functions --------- .. autoapisummary:: pas.data_import.preprocess_headers pas.data_import.preprocess_csv_headers pas.data_import.validate_headers pas.data_import.preprocess_excel_headers pas.data_import.match_expected_headers_or_fail pas.data_import.with_open_excel_or_csv pas.data_import.import_commissions Module Contents --------------- .. py:data:: T .. py:data:: P .. py:class:: Row Bases: :py:obj:`Protocol` Base class for protocol classes. Protocol classes are defined as:: class Proto(Protocol): def meth(self) -> int: ... Such classes are primarily used with static type checkers that recognize structural subtyping (static duck-typing). For example:: class C: def meth(self) -> int: return 0 def func(x: Proto) -> int: return x.meth() func(C()) # Passes static type check See PEP 544 for details. Protocol classes decorated with @typing.runtime_checkable act as simple-minded runtime protocols that check only the presence of given attributes, ignoring their type signatures. Protocol classes can be generic, they are defined as:: class GenProto(Protocol[T]): def meth(self) -> T: ... .. py:attribute:: adress_anrede :type: str .. py:attribute:: akademischer_titel :type: str .. py:attribute:: anrede :type: str .. py:attribute:: austritt_kommission :type: str .. py:attribute:: bemerkungen :type: str .. py:attribute:: beruf :type: str .. py:attribute:: brief_anrede :type: str .. py:attribute:: burgerort :type: str .. py:attribute:: count :type: str .. py:attribute:: e_mail_1 :type: str .. py:attribute:: e_mail_2 :type: str .. py:attribute:: eintritt_kommission :type: str .. py:attribute:: fraktion :type: str .. py:attribute:: geburtsdatum :type: str .. py:attribute:: geschlecht :type: str .. py:attribute:: id :type: str .. py:attribute:: index :type: str .. py:attribute:: nachname :type: str .. py:attribute:: partei :type: str .. py:attribute:: personalnummer :type: str .. py:attribute:: privat_adresse :type: str .. py:attribute:: privat_adresszusatz :type: str .. py:attribute:: privat_ort :type: str .. py:attribute:: privat_plz :type: str .. py:attribute:: rolle_kommission :type: str .. py:attribute:: rownumber :type: int .. py:attribute:: spedition_kr_vorlagen :type: str .. py:attribute:: telefon_geschaft :type: str .. py:attribute:: telefon_mobile :type: str .. py:attribute:: telefon_privat :type: str .. py:attribute:: versand_adresse :type: str .. py:attribute:: versand_adresszusatz :type: str .. py:attribute:: versand_ort :type: str .. py:attribute:: versand_plz :type: str .. py:attribute:: versandart :type: str .. py:attribute:: vertragsnummer :type: str .. py:attribute:: vorname :type: str .. py:attribute:: wahlkreis :type: str .. py:attribute:: webseite :type: str .. py:attribute:: zusatzinformationen :type: str .. py:data:: EXPECTED_HEADERS :value: ['adress_anrede', 'akademischer_titel', 'anrede', 'austritt_kommission', 'bemerkungen', 'beruf',... .. py:class:: ImportFile(file: BinaryIO) Provides a unified interface for both CSV and Excel files. .. py:attribute:: ENCODINGS :value: ['utf-8', 'iso-8859-1'] .. py:attribute:: file .. py:attribute:: rows :type: list[Any] :value: [] .. py:method:: _detect_type() -> None Detect if file is CSV or Excel based on content. .. py:method:: _parse() -> None Parse the file contents based on detected type. .. py:method:: _parse_csv() -> None .. py:method:: _parse_excel() -> None Parse the file contents for excel files. .. py:method:: __enter__() -> Self .. py:method:: __exit__(exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: types.TracebackType | None) -> None .. py:function:: preprocess_headers(headers: list[str], header_renames: dict[str, str]) -> list[str] Helper function to process headers using rename mapping. .. py:function:: preprocess_csv_headers(csv_path_abs: _typeshed.StrOrBytesPath, expected: list[str] | None = None) -> _typeshed.StrOrBytesPath Preprocesses a CSV file to rename specific headers to avoid issues with the CSV parser. Creates a temporary file with the modified headers. Renames: "1. E-Mail" to "E_Mail_1" "2. E-Mail" to "E_Mail_2" Returns: Path to the temporary CSV file with preprocessed headers. .. py:class:: HeaderValidationResult .. py:attribute:: is_valid :type: bool .. py:attribute:: missing_headers :type: list[str] .. py:attribute:: unexpected_headers :type: list[str] .. py:attribute:: original_headers :type: list[str] .. py:function:: validate_headers(current_headers: list[str], expected_headers: list[str]) -> HeaderValidationResult .. py:function:: preprocess_excel_headers(excel_path: _typeshed.StrOrBytesPath, expected: list[str] | None = None) -> _typeshed.StrOrBytesPath Preprocess Excel headers using a context manager for temporary file handling. Args: excel_path: Path to the input Excel file expected: Optional list of expected headers to validate against Returns: Path to the processed temporary file Raises: Exception: If header processing or validation fails .. py:function:: match_expected_headers_or_fail(expected: Any, header_row: Any) -> None .. py:function:: with_open_excel_or_csv(func: collections.abc.Callable[Ellipsis, T]) -> collections.abc.Callable[Ellipsis, T] Decorator to handle opening and parsing import files. Handles both CSV and Excel files, preprocessing headers as needed. .. py:function:: import_commissions(import_file: ImportFile, session: sqlalchemy.orm.Session, commission_file_abs_path: str, **kwargs: Any) -> None Imports all data from commission file.