跳到正文

爬虫分享【1】

Python 2729 次浏览

Python环境:3.6

需要的库:requests 基于urllib urllib更加的简洁,BeautifulSoup :网页解析库

1,          headers 头部分 用于向服务器发送信息 伪装成浏览器访问

2,          def save_artist(group_id, initial):
params:字典,用于组合传递过来的参数

3,          r:接收爬虫向服务器发送的参数返回的数据

4,          soup:参数有html的文档以及设置字符串的编码格式,htnl解析器

5,          获取soupbody标签,也就是返回的html文档的body attrs字典参数,如果标签字符中带有-以及 class不能看作标签属性的时候 用字典参数进行传旨,artists和上部分类似

6,          For循环 将查询到的列表通过遍历进行更深层的数据提取并且转换成格式相对的数据

7,          然后调用sql命令插入到数据库

8,          函数外面定义爬取网页的参数  并且定义for循环以及range函数进行有规律的调用 sava_artist进行爬取

"""
获取所有的歌手信息
"""
import requests
from bs4 import BeautifulSoup
from sql import *

headers = { ‘Accept’: ’text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8’, ‘Accept-Encoding’: ‘gzip, deflate, sdch’, ‘Accept-Language’: ‘zh-CN,zh;q=0.8,en;q=0.6’, ‘Cache-Control’: ’no-cache’, ‘Connection’: ‘keep-alive’, ‘Cookie’: ‘_ntes_nnid=7eced19b27ffae35dad3f8f2bf5885cd,1476521011210; _ntes_nuid=7eced19b27ffae35dad3f8f2bf5885cd; usertrack=c+5+hlgB7TgnsAmACnXtAg==; Province=025; City=025; NTES_PASSPORT=6n9ihXhbWKPi8yAqG.i2kETSCRa.ug06Txh8EMrrRsliVQXFV_orx5HffqhQjuGHkNQrLOIRLLotGohL9s10wcYSPiQfI2wiPacKlJ3nYAXgM; P_INFO=hourui93@163.com|1476523293|1|study|11&12|jis&1476511733&mail163#jis&320100#10#0#0|151889&0|g37_client_check&mailsettings&mail163&study&blog|hourui93@163.com; NTES_SESS=Fa2uk.YZsGoj59AgD6tRjTXGaJ8_1_4YvGfXUkS7C1NwtMe.tG1Vzr255TXM6yj2mKqTZzqFtoEKQrgewi9ZK60ylIqq5puaG6QIaNQ7EK5MTcRgHLOhqttDHfaI_vsBzB4bibfamzx1.fhlpqZh_FcnXUYQFw5F5KIBUmGJg7xdasvGf_EgfICWV; S_INFO=1476597594|1|0&80##|hourui93; NETEASE_AUTH_SOURCE=space; NETEASE_AUTH_USERNAME=hourui93; _ga=GA1.2.1405085820.1476521280; JSESSIONID-WYYY=cbd082d2ce2cffbcd5c085d8bf565a95aee3173ddbbb00bfa270950f93f1d8bb4cb55a56a4049fa8c828373f630c78f4a43d6c3d252c4c44f44b098a9434a7d8fc110670a6e1e9af992c78092936b1e19351435ecff76a181993780035547fa5241a5afb96e8c665182d0d5b911663281967d675ff2658015887a94b3ee1575fa1956a5a%3A1476607977016; iuqxldmzr=25; __utma=94650624.1038096298.1476521011.1476595468.1476606177.8; __utmb=94650624.20.10.1476606177; __utmc=94650624; __utmz=94650624.1476521011.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)’, ‘DNT’: ‘1’, ‘Host’: ‘music.163.com’, ‘Pragma’: ’no-cache’, ‘Referer’: ‘https://music.163.com/', ‘Upgrade-Insecure-Requests’: ‘1’, ‘User-Agent’: ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36’ }

def save_artist(group_id, initial): params = {‘id’: group_id, ‘initial’: initial} r = requests.get(‘https://music.163.com/discover/artist/cat', params=params)

# 网页解析
soup = BeautifulSoup(r.content.decode(), 'html.parser')
body = soup.body

hot_artists = body.find_all('a', attrs={'class': 'msk'})
artists = body.find_all('a', attrs={'class': 'nm nm-icn f-thide s-fc0'})

for artist in hot_artists:
    artist_id = artist['href'].replace('/artist?id=', '').strip()
    artist_name = artist['title'].replace('的音乐', '')
    print(artist_name)
    try:
        insert_artist(artist_id, artist_name)
    except Exception as e:
        # 打印错误日志
        print(e)

for artist in artists:
    artist_id = artist['href'].replace('/artist?id=', '').strip()
    artist_name = artist['title'].replace('的音乐', '')
    try:
        insert_artist(artist_id, artist_name)
    except Exception as e:
        # 打印错误日志
        print(e)

gg = 4003

save_artist(gg, 0) for i in range(65, 91): save_artist(gg, i)


评论

加载中…