• Stars
    star
    345
  • Rank 122,064 (Top 3 %)
  • Language
    Python
  • License
    GNU General Publi...
  • Created almost 8 years ago
  • Updated over 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

爬取网易云音乐所有歌曲的评论数

这是一个爬取网易云音乐的所有的歌曲的评论数的爬虫。

以下为主要思路:

  1. 爬取所有的歌手信息(artists.py);
  2. 根据上一步爬取到的歌手信息去爬取所有的专辑信息(album_by _artist.py);
  3. 根据专辑信息爬取所有的歌曲信息(music_by _album.py);
  4. 根据歌曲信息爬取其评论条数(comments_by _music.py
  5. 数据库相关的语句都存放于(sql.py)中。