信息化热词分析python

liyiyang / 2023-08-29 / 原文

环境准备

# 安装requests库
pip install requests
# 安装bs4库
pip install bs4
# 安装jieba库
pip install jieba
# 安装selenium库
pip install selenium
# 安装lxml库
pip install lxml
# 安装matplotlib库
pip install matplotlib
# 安装numpy库
pip install numpy
# 安装Pillow库
pip install Pillow
# 安装wordcloud库
pip install wordcloud

工具准备

chromedriver

历史版本:chromedriver.storage.googleapis.com/index.html

最新版本:http://chromedriver.storage.googleapis.com/index.html

本项目爬取了博客园的推荐新闻,并且获取热度最高的100个词并生成词云图片

项目代码