You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567
  1. import os
  2. # Getting the absolute path of the current file's directory
  3. ABS_PATH = os.path.dirname(os.path.abspath(__file__))
  4. # Getting the absolute path of the project's root directory
  5. PROJECT_DIR = os.path.abspath(os.path.join(ABS_PATH, os.pardir, os.pardir))