settings.py 198 B

12345
  1. from pathlib import Path
  2. WORK_DIR = Path(__file__).parent.parent.absolute()
  3. OUTPUT_DIR = WORK_DIR / "output"
  4. CONFIG_DIR = WORK_DIR / "mylib" / "conf"
  5. GOOGLE_SEARCH_DIR = OUTPUT_DIR / "google_search"