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

爬虫---解析

时间:2018-04-10 21:52:17      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:nbsp   desc   .com   pil   四种   lxml   分享图片   对象   建议   

1.beautifulsoup

https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/

pip install beautifulsoup4

1.1 解析库

建议lxml

技术分享图片

1.2 解析

四个对象:

# 四种对象:Tag , NavigableString , BeautifulSoup , Comment .

 tag对象的:string。gettext()。content。

遍历tag对象

head_tag.descendants:子孙节点
title_tag.children:子节点

寻找tag对象

soup.find_all(re.compile("t")):
soup.find_all(["a", "b"])

2.xpath

3.pyquery

4.正则表达式

 

爬虫---解析

标签:nbsp   desc   .com   pil   四种   lxml   分享图片   对象   建议   

原文地址:https://www.cnblogs.com/BlueFire-py/p/8782693.html

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