python爬取战狼2词云图
时间: 2023-10-01 08:02:22 浏览: 91
好的,以下是一个简单的Python爬虫获取《战狼2》剧本并生成词云图的示例代码:
```python
import requests
from bs4 import BeautifulSoup
from wordcloud import WordCloud
import jieba
# 获取电影《战狼2》的剧本
url = 'https://www.zybuluo.com/cmd/'
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
text = soup.get_text()
# 使用 jieba 分词
words = jieba.cut(text)
# 生成词云图
wordcloud = WordCloud(font_path='simhei.ttf', background_color='white', width=800, height=600).generate(' '.join(words))
wordcloud.to_file('zhanlang2_wordcloud.png')
```
这段代码会爬取电影《战狼2》的剧本,然后使用 jieba 分词,最后生成词云图并保存为 PNG 格式图片。你可以根据自己的需求修改代码。
阅读全文