import os
version = '1.1.2'
contact = '701805520'
github = 'https://github.com/LC044/WeChatMsg'
website = 'https://memotrace.cn/'
copyright = '© 2022-2024 SiYuan'
license = 'GPLv3'
description = [
'1. 支持获取个人信息
',
'2. 支持显示聊天界面
',
'3. 支持导出聊天记录
* csv
* html
* '
'txt
* docx
',
'4. 生成年度报告——圣诞特别版',
]
about = f'''
版本:{version}
QQ交流群:请关注微信公众号回复:联系方式
地址:{github}
官网:{website}
新特性:
{''.join(['' + i for i in description])}
License {license}
Copyright {copyright}
'''
# 数据存放文件路径
INFO_FILE_PATH = './app/data/info.json' # 个人信息文件
DB_DIR = './app/Database/Msg'
OUTPUT_DIR = './data/' # 输出文件夹
os.makedirs('./app/data', exist_ok=True)
os.makedirs(DB_DIR, exist_ok=True)
os.makedirs(OUTPUT_DIR, exist_ok=True)
# 全局参数
SEND_LOG_FLAG = True # 是否发送错误日志
SERVER_API_URL = 'http://api.lc044.love' # api接口
# SERVER_API_URL = 'http://127.0.0.1:8000' # api接口