- from pathlib import Path
- WORK_DIR = Path(__file__).parent.parent.absolute()
- OUTPUT_DIR = WORK_DIR / "output"
- CONFIG_DIR = WORK_DIR / "config" / "conf"
- GOOGLE_SEARCH_DIR = OUTPUT_DIR / "google_search"
- LOG_LEVEL='info'
- LOG_DIR = OUTPUT_DIR / "logs"
- DB_URL = f"sqlite:///{OUTPUT_DIR}/search_results.db"
|