python自动化爬取网易云歌词并制作词云图

Posted J哥。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python自动化爬取网易云歌词并制作词云图相关的知识,希望对你有一定的参考价值。

图片需要用透明图片:这就体现你的搜索能力了

import jieba  # 中文分词库
import wordcloud  # 词云图库
import imageio  # 图像模块

#读取图片
file = open('contend.txt', mode='r', encoding='utf-8')
txt = file.read()
# print(txt)
# 分词  把词语分开
txt_list = jieba.lcut(txt)
# 合并分词
string = ' '.join(txt_list)  # 把列表的的数据类型合并成字符串
# 制作词云图:
# 读取图像:
img = imageio.imread('音乐.png')
# 设置词云图:
wc = wordcloud.WordCloud(
    width=1000,  # 图片的宽度
    height=700,  # 图片的高度
    background_color='white',  # 图片背景颜色
    font_path='msyh.ttc',
    scale=10,  # 图片字体大小
    mask=img,  # 图片模块的使用
    stopwords=set([line.strip() for line in open('cn_stopwords.txt', mode='r', encoding='utf-8').readline()])
    # line.strip() 去除字符串两边的空格  +列表推导式
)


print('zzhz')
wc.generate(string)
wc.to_file('output.png')
print('cg..')

 

以上是关于python自动化爬取网易云歌词并制作词云图的主要内容,如果未能解决你的问题,请参考以下文章

python用自动化爬取网易云评论1

如何用Python网络爬虫爬取网易云音乐歌词

如何用Python网络爬虫爬取网易云音乐歌词

一篇文章带你用Python网络爬虫实现网易云音乐歌词抓取

一篇文章带你用Python网络爬虫实现网易云音乐歌词抓取

python学习之爬虫 ——————爬取网易云歌词