requirements.txt 700 B

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