base_config.py 268 B

12345678910111213141516
  1. # -*- coding:utf-8 -*-
  2. """
  3. @author: yq
  4. @time: 2022/10/24
  5. @desc:
  6. """
  7. import os
  8. class BaseConfig:
  9. # 图片缓存位置
  10. image_path = "./cache/image"
  11. os.makedirs(image_path, exist_ok=True)
  12. # 表格合并相同列名的列
  13. merge_table_column = True