Arg.py 418 B

123456789101112
  1. class Arg:
  2. def __init__(self):
  3. # 数据库地址
  4. self.database = "mysql+pymysql://root:123@localhost:3306/ipfcst-guyuan"
  5. # 数据存放位置
  6. self.dataloc = "../guyuan/"
  7. # 变量存放位置
  8. self.varloc = "../guyuan/var/"
  9. # 环境监测仪个数
  10. self.weatherloc = [1]
  11. # 归一化文件存放位置
  12. self.normloc = '../guyuan/norm.yaml'