diff --git a/brancheneinstufung2.py b/brancheneinstufung2.py index 8145c318..4c3c04b6 100644 --- a/brancheneinstufung2.py +++ b/brancheneinstufung2.py @@ -10,21 +10,31 @@ DataProcessor und startet den ausgewählten Verarbeitungsmodus. Autor: Christian Godelmann Version: v1.8.0 """ -print("--- Skript brancheneinstufung2.py wird gestartet ---") +print("--- START ---") import logging +print("--- logging importiert ---") import os +print("--- os importiert ---") import argparse +print("--- argparse importiert ---") import time +print("--- time importiert ---") from datetime import datetime +print("--- datetime importiert ---") -# Import der Projekt-Module -# Wichtig: Config muss zuerst importiert werden, damit die DEBUG-Variable verfügbar ist. from config import Config +print("--- config importiert ---") from helpers import create_log_filename, initialize_target_schema, alignment_demo, log_module_versions +print("--- helpers importiert ---") from google_sheet_handler import GoogleSheetHandler +print("--- google_sheet_handler importiert ---") from wikipedia_scraper import WikipediaScraper +print("--- wikipedia_scraper importiert ---") from data_processor import DataProcessor +print("--- data_processor importiert ---") from sync_manager import SyncManager +print("--- sync_manager importiert ---") + import helpers import google_sheet_handler