国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

requests和lxml實(shí)現(xiàn)爬蟲的方法

2020-01-04 17:19:04
字體:
供稿:網(wǎng)友

如下所示:

# requests模塊來請(qǐng)求頁面
# lxml模塊的html構(gòu)建selector選擇器(格式化響應(yīng)response)
# from lxml import html
# import requests

# response = requests.get(url).content

# selector = html.formatstring(response)

# hrefs = selector.xpath('/html/body//div[@class='feed-item _j_feed_item']/a/@href')

# 以u(píng)rl = 'https://www.mafengwo.cn/gonglve/ziyouxing/2033.html'為例子

# python 2.7import requestsfrom lxml import htmlimport os
# 獲取首頁中子頁的url鏈接def get_page_urls(url):  response = requests.get(url).content  # 通過lxml的html來構(gòu)建選擇器  selector = html.fromstring(response)  urls = []  for i in selector.xpath("/html/body//div[@class='feed-item _j_feed_item']/a/@href"):    urls.append(i)  return urls
# get title from a child's html(div[@class='title'])def get_page_a_title(url):  '''url is ziyouxing's a@href'''  response = requests.get(url).content  selector = html.fromstring(response)  # get xpath by chrome's tool --> /html/body//div[@class='title']/text()  a_title = selector.xpath("/html/body//div[@class='title']/text()")  return a_title
# 獲取頁面選擇器(通過lxml的html構(gòu)建)def get_selector(url):  response = requests.get(url).content  selector = html.fromstring(response)  return selector
# 通過chrome的開發(fā)者工具分析html頁面結(jié)構(gòu)后發(fā)現(xiàn),我們需要獲取的文本內(nèi)容主要顯示在div[@class='l-topic']和div[@class='p-section']中
# 獲取所需的文本內(nèi)容 def get_page_content(selector):   # /html/body/div[2]/div[2]/div[1]/div[@class='l-topic']/p/text()   page_title = selector.xpath("//div[@class='l-topic']/p/text()")   # /html/body/div[2]/div[2]/div[1]/div[2]/div[15]/div[@class='p-section']/text()   page_content = selector.xpath("//div[@class='p-section']/text()")   return page_title,page_content
# 獲取頁面中的圖片url地址def get_image_urls(selector):  imagesrcs = selector.xpath("//img[@class='_j_lazyload']/@src")  return imagesrcs
# 獲取圖片的標(biāo)題def get_image_title(selector, num)  # num 是從2開始的  url = "/html/body/div[2]/div[2]/div[1]/div[2]/div["+num+"]/span[@class='img-an']/text()"  if selector.xpath(url) is not None:    image_title = selector.xpath(url)  else:    image_title = "map"+str(num) # 沒有就起一個(gè)  return image_title
# 下載圖片def downloadimages(selector,number):  '''number是用來計(jì)數(shù)的'''  urls = get_image_urls()  num = 2  amount = len(urls)  for url in urls:    image_title = get_image_title(selector, num)    filename = "/home/WorkSpace/tour/words/result"+number+"/+"image_title+".jpg"    if not os.path.exists(filename):      os.makedirs(filename)    print('downloading %s image %s' %(number, image_title))    with open(filename, 'wb') as f:      f.write(requests.get(url).content)    num += 1  print "已經(jīng)下載了%s張圖" %num
# 入口,啟動(dòng)并把獲取的數(shù)據(jù)存入文件中if __name__ =='__main__':  url = 'https://www.mafengwo.cn/gonglve/ziyouxing/2033.html'  urls = get_page_urls(url)  # turn to get response from html  number = 1  for i in urls:    selector = get_selector(i)    # download images    downloadimages(selector,number)    # get text and write into a file    page_title, page_content = get_page_content(selector)    result = page_title+'/n'+page_content+'/n/n'    path = "/home/WorkSpace/tour/words/result"+num+"/"    if not os.path.exists(filename):      os.makedirs(filename)    filename = path + "num"+".txt"    with open(filename,'wb') as f:      f.write(result)    print result

到此就結(jié)束了該爬蟲,爬取頁面前一定要認(rèn)真分析html結(jié)構(gòu),有些頁面是由js生成,該頁面比較簡(jiǎn)單,沒涉及到j(luò)s的處理,日后的隨筆中會(huì)有相關(guān)分享

以上這篇requests和lxml實(shí)現(xiàn)爬蟲的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持VEVB武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 错那县| 武清区| 广州市| 海兴县| 香港 | 青岛市| 岗巴县| 宣汉县| 睢宁县| 即墨市| 水富县| 彭阳县| 达拉特旗| 富裕县| 任丘市| 体育| 定兴县| 名山县| 姜堰市| 温泉县| 平乐县| 桐庐县| 清原| 龙海市| 孝昌县| 乌拉特后旗| 萍乡市| 乃东县| 白山市| 吉安市| 桂平市| 年辖:市辖区| 贡觉县| 大同市| 卢湾区| 长兴县| 荃湾区| 巴彦淖尔市| 赤城县| 磐石市| 桦川县|