理解爬虫原理

Posted hzj111

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了理解爬虫原理相关的知识,希望对你有一定的参考价值。

 

1. 简单说明爬虫原理

a.向服务器发起请求

b.获取响应内容

c.解析内容

d.保存内容

2. 理解爬虫开发过程

1).简要说明浏览器工作原理;

输入url,发送请求,通过网络连接,等待服务器相应返回数据,浏览器出现界面

2).使用 requests 库抓取网站数据;

requests.get(url) 获取校园新闻首页html代码

url=http://news.gzcc.cn/html/xiaoyuanxinwen
res = requests.get(url)

 

3).了解网页

写一个简单的html文件,包含多个标签,类,id

html_sample = ‘ \\
<html> \\
<body> \\
<h1 id="title">Hello</h1> \\
<a href="#" class="link"> This is link1</a >\\
<a href="# link2" class="link" qao=123> This is link2</a >\\
</body> \\
</html> ‘

4).使用 Beautiful Soup 解析网页;

通过BeautifulSoup(html_sample,‘html.parser‘)把上述html文件解析成DOM Tree

select(选择器)定位数据

找出含有特定标签的html元素

a=soup.select(h1)[0].text
print(a)

 

找出含有特定类名的html元素

for i in range(len(soup.select(.link))):
    b=soup.select(.link)[i].text
print(b)

 

找出含有特定id名的html元素

c=soup.select(#title)[0].text
print(c)

 

3.提取一篇校园新闻的标题、发布时间、发布单位

url=http://news.gzcc.cn/html/2019/xiaoyuanxinwen_0322/11042.html
res=requests.get(url)
res.encoding=utf-8
soup1=BeautifulSoup(res.text,html.parser)
a=soup1.select(.show-title)[0].text
b=soup1.select(.show-info)[0].text
print(a,b)

技术图片

 

以上是关于理解爬虫原理的主要内容,如果未能解决你的问题,请参考以下文章

理解爬虫原理

理解爬虫原理

理解爬虫原理

理解爬虫原理

《Python爬虫技术:深入理解原理技术与开发》已经出版,欢迎关注

jsoup爬虫的底层原理