您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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))