prepare for statistics code

move wechat.py to core folder
update requirements.txt
This commit is contained in:
blade 2025-07-25 16:19:17 +08:00
parent b9e17f54f9
commit dbfdeff299
4 changed files with 14 additions and 8 deletions

0
core/statistics.py Normal file
View File

10
core/wechat.py Normal file
View File

@ -0,0 +1,10 @@
"""
微信群发功能
建议使用企业微信
但需要管理员提供企业id以及secret信息
通过wechatpy库实现
"""
import wechatpy
import logging
logging.basicConfig(level=logging.INFO, format='%(asctime)s %(levelname)s: %(message)s')

View File

@ -1,4 +1,6 @@
okx>=2.1.2
pandas>=2.0.0
numpy>=1.20.0
requests>=2.25.0
requests>=2.25.0
sqlalchemy >= 2.0.41
pymysql >= 1.1.1
wechatpy >= 1.8.18

View File

@ -1,6 +0,0 @@
"""
微信群发功能
建议使用企业微信
但需要管理员提供企业id以及secret信息
通过wechatpy库实现
"""