日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > python >内容正文

python

python爬去百度百科词条_python简单爬虫爬取百度百科python词条网页

發(fā)布時間:2025/3/12 python 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python爬去百度百科词条_python简单爬虫爬取百度百科python词条网页 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

目標分析:

目標:百度百科python詞條相關(guān)詞條網(wǎng)頁 - 標題和簡介

入口頁:https://baike.baidu.com/item/Python/407313

URL格式:

- 詞條頁面URL:/item/xxxx

數(shù)據(jù)格式:

- 標題:

***

- 簡介:

***

頁面編碼:utf-8

爬蟲主入口文件

spider_main.py

#coding:utf-8

importurl_managerimporthtml_downloaderimporthtml_parserimporthtml_outputerclassSpiderMain(object):def __init__(self):#url管理器

self.urls =url_manager.UrlManager()#下載器

self.downloader =html_downloader.HtmlDownloader()#解析器

self.parser =html_parser.HtmlParser()#輸出控制器

self.outputer =html_outputer.HtmlOutputer()defcraw(self, root_url):#記錄當(dāng)前爬取的是第幾個url

count = 1self.urls.add_new_url(root_url)#如果有待爬取的url就繼續(xù)while循環(huán)

'''while self.urls.has_new_url():

try:

new_url = self.urls.get_new_url()

print 'craw %d : %s' % (count, new_url)

# 下載url頁面

html_cont = self.downloader.download(new_url)

# 進行url解析并獲取url的數(shù)據(jù)

new_urls, new_data = self.parser.parse(new_url, html_cont)

# url解析及數(shù)據(jù)搜集

self.urls.add_new_urls(new_urls)

self.outputer.collect_data(new_data)

if count >= 1000:

break

count = count + 1

except Exception as e:

print 'craw failed'

print e'''

whileself.urls.has_new_url():

new_url=self.urls.get_new_url()print 'craw %d : %s' %(count, new_url)#下載url頁面

html_cont =self.downloader.download(new_url)#print html_cont

#進行url解析并獲取url的數(shù)據(jù)

new_urls, new_data =self.parser.parse(new_url, html_cont)#url解析及數(shù)據(jù)搜集

self.urls.add_new_urls(new_urls)

self.outputer.collect_data(new_data)if count >= 10:breakcount= count + 1

#輸出到指定頁面

self.outputer.output_html()if __name__ == "__main__":

root_url= "https://baike.baidu.com/item/Python/407313"obj_spider=SpiderMain()

obj_spider.craw(root_url)

網(wǎng)頁管理器

url_manager.py

#coding:utf-8

classUrlManager(object):def __init__(self):#要爬取的url

self.new_urls =set()#爬取過的url

self.old_urls =set()defadd_new_url(self, url):if url isNone:return

#如果url不在要爬取的url里面也不在爬取過的url里面就添加進來

if url not in self.new_urls and url not inself.old_urls:

self.new_urls.add(url)defadd_new_urls(self, urls):if urls is None or len(urls) ==0:return

for url inurls:

self.add_new_url(url)defhas_new_url(self):return len(self.new_urls) !=0defget_new_url(self):

new_url=self.new_urls.pop()

self.old_urls.add(new_url)return new_url

網(wǎng)頁下載器

html_downloader.py

#coding:utf-8

importurllib2classHtmlDownloader(object):defdownload(self, url):if url isNone:returnNone

response=urllib2.urlopen(url)if response.getcode() != 200:returnNonereturn response.read()

網(wǎng)頁分析器

html_parser.py

#coding:utf-8

from bs4 importBeautifulSoupimportreimporturlparseclassHtmlParser(object):def_get_new_urls(self, page_url, soup):#得到所有的詞條url

links = soup.find_all('a', href=re.compile(r"/item/.*"))#print links

new_urls =set()for link inlinks:

new_url= link['href']

new_full_url=urlparse.urljoin(page_url, new_url)

new_urls.add(new_full_url)returnnew_urlsdef_get_new_data(self, page_url, soup):

res_data={}#url

res_data['url'] =page_url#

#

Python

title_node = soup.find('dd', class_='lemmaWgt-lemmaTitle-title').find("h1")

res_data['title'] =title_node.get_text()#

summary_node = soup.find('div', class_="lemma-summary")

res_data['summary'] =summary_node.get_text()returnres_datadefparse(self, page_url, html_cont):if page_url is None or html_cont isNone:returnsoup= BeautifulSoup(html_cont, 'html.parser', from_encoding='utf-8')

new_urls=self._get_new_urls(page_url, soup)

new_data=self._get_new_data(page_url, soup)return new_urls,new_data

網(wǎng)頁輸出器

html_outputer.py

#coding:utf-8

classHtmlOutputer(object):def __init__(self):

self.datas=[]defcollect_data(self, data):if data isNone:returnself.datas.append(data)#ascii

defoutput_html(self):

fout= open('output.html', 'w')

fout.write("")

fout.write("

")

fout.write("

fout.write("

")

fout.write("

%s" % data['url'])

fout.write("

%s" % data['title'].encode('utf-8'))

fout.write("

%s" % data['summary'].encode('utf-8'))

fout.write("

")

fout.write("/table")

fout.write("/body")

fout.write("/html")

運行代碼:

結(jié)果頁面

總結(jié)

以上是生活随笔為你收集整理的python爬去百度百科词条_python简单爬虫爬取百度百科python词条网页的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。