# 搜索系统依赖包

# 核心依赖
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 