python爬取网易云音乐生成王力宏歌曲词云

python爬取网易云音乐生成王力宏歌曲词云

# -*- coding:utf-8 -*-
# 网易云音乐,通过歌手id生成词云
import requests
import sys,re,os
from wordcloud import WordCloud
import matplotlib.pyplot as plt 
import jieba
from PIL import Image 
import numpy as np
from lxml import etree 

headers = {
    'Referer' :'http://music.163.com',
    'Host' : 'music.163.com',
    'Accept' : 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8',
    'User-Agent' : 'Chrome/10'
}

#获取歌词
def get_song_lyric(headers, lyric_url):
    res = requests.request('GET', lyric_url,headers=headers)
    if 'lrc' in res.json():
        lyric = res.json()['lrc']['lyric']
        new_lyric = re.sub(r'[\d:.[\]]','',lyric)
        return new_lyric
    else:
        return ''
        print(res.json())

#去除停用词
def remove_stop_words(f):
    stop_words = ['作词','作曲', '编曲', 'Arranger', '录音', '混音', '人声', 'Vocal', '弦乐', 'Keyboard', '键盘', '编辑', '助理', 'Assistants', 'Mixing', 'Editing', 'Recording', '音乐', '制作', 'Producer', '发行', 'produced', 'and', 'distributed']
    for stop_word in stop_words:
        f = f.replace(stop_word, '')
    return f 

#生成词云
def create_word_cloud(f):
    print('根据词频,开始生成词云!')
    f = remove_stop_words(f)
    cut_text = ' '.join(jieba.cut(f, cut_all=False, HMM=True))
    wc = WordCloud(
        font_path = './wc.ttf',
        max_words = 100,
        width = 2000,
        height = 1200,
        )
    print(cut_text)
    wordcloud = wc.generate(cut_text)
    #写词云图片
    wordcloud.to_file('wanglihong_wordcloud.jpg')
    #显示词云文件
    plt.imshow(wordcloud)
    plt.axis('off')
    plt.show()

#得到王力宏页面热门前50的歌曲ID,歌曲名
def get_songs(artist_id):
    page_url = 'https://music.163.com/artist?id=' + artist_id
    #获取HTML
    res = requests.request('GET', page_url, headers=headers)
    #用xpath解析前50首热门歌曲
    html = etree.HTML(res.text)
    href_xpath = "//*[@id='hotsong-list']//a/@href"
    name_xpath = "//*[@id='hotsong-list']//a/text()"
    hrefs = html.xpath(href_xpath)
    names = html.xpath(name_xpath)
    #设置热门歌曲ID,歌名
    song_ids = []
    song_names = []
    for href, name in zip(hrefs, names):
        song_ids.append(href[9:])
        song_names.append(name)
        print(href, ' ', name)
    return song_ids, song_names

#设置热门歌手ID
artist_id = '5346'
[song_ids, song_names] = get_songs(artist_id)

#所有歌词
all_word = ''
#获取每首歌歌词
for (song_id, song_name) in zip(song_ids, song_names):
    lyric_url = 'http://music.163.com/api/song/lyric?os=pc&id=' + song_id + '&lv=-1&kv=-1&tv=-1'
    lyric = get_song_lyric(headers, lyric_url)
    all_word = all_word + ' ' + lyric
    print(song_name)

#根据词频生成词云
create_word_cloud(all_word)

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Sweeney Chen

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值