Files
20250715-66bfff96/代码实现/requirements.txt
2026-04-25 19:21:03 +08:00

41 lines
897 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 搜索系统依赖包
# 核心依赖
requests>=2.28.0
feedparser>=6.0.10
python-docx>=0.8.11
# 数据库
sqlite3 # Python内置无需安装
# 可选API依赖
newsapi-python>=0.2.6
# 日志和工具
pathlib # Python内置无需安装
logging # Python内置无需安装
hashlib # Python内置无需安装
json # Python内置无需安装
datetime # Python内置无需安装
typing # Python内置无需安装
threading # Python内置无需安装
concurrent.futures # Python内置无需安装
collections # Python内置无需安装
html # Python内置无需安装
re # Python内置无需安装
time # Python内置无需安装
# Web界面(可选)
flask>=2.0.0
jinja2>=3.0.0
# 数据处理增强(可选)
pandas>=1.5.0
numpy>=1.21.0
# 中文处理(可选)
jieba>=0.42.1
# 更高级的NLP处理(可选)
nltk>=3.8
scikit-learn>=1.1.0