码迷,mamicode.com
首页 > 其他好文 > 详细

爬虫实践-爬取酷狗TOP500数据

时间:2017-12-05 00:59:00      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:port   win   name   webkit   com   ext   agent   imp   源代码   

技术分享图片

技术分享图片

源代码:

import requests
from bs4 import BeautifulSoup
import time

headers = {
‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 ‘
‘ (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36‘
}


def get_info(url):
wb_data = requests.get(url, headers=headers)
soup = BeautifulSoup(wb_data.text, ‘lxml‘)
ranks = soup.select(‘span.pc_temp_num‘)
titles = soup.select(‘div.pc_temp_songlist > ul > li > a‘)
times = soup.select(‘span.pc_temp_tips_r > span‘)
for rank, title, time in zip(ranks, titles, times):
data = {
‘rank‘: rank.get_text().strip(),
‘singer‘: title.get_text().split(‘-‘)[0],
‘song‘: title.get_text().split(‘-‘)[0],
‘time‘: time.get_text().strip()
}
print(data)


if __name__ == ‘__main__‘:
urls = [‘http://www.kugou.com/yy/rank/home/{}-8888.html‘.format(str(i)) for i in range(1, 24)]
for url in urls:
get_info(url)
time.sleep(1)

 

爬虫实践-爬取酷狗TOP500数据

标签:port   win   name   webkit   com   ext   agent   imp   源代码   

原文地址:http://www.cnblogs.com/silverbulletcy/p/7979411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!