| 1234567891011121314151617181920212223 |
- # 得卡 DECA 爬虫依赖(版本为当前环境实测,Python 3.12.10)
- # 安装:pip install -r requirements.txt
- # 采集 / 调度 / 日志 / 重试
- requests==2.33.1
- schedule==1.2.2
- loguru==0.7.3
- tenacity==9.1.4
- # 数据库(全局公共库 mysql_pool 的底层依赖)
- PyMySQL==1.1.2
- DBUtils==3.1.2
- PyYAML==6.0.3
- # 统计报表出图
- matplotlib==3.10.9
- # PC 微信(4.0) 自动发送图片;原 wxauto 已从 PyPI 下架,改用 wxauto4
- # 若因 requires-python 装不上可加:pip install wxauto4 --ignore-requires-python
- wxauto4==41.1.2
- # 本地公共库(含 mysql_pool / YamlLoader),非 PyPI,需 editable 安装:
- # cd D:\work\common\charley-utils && pip install -e .
|