2022
06-10
06-10
python爬虫学习笔记--BeautifulSoup4库的使用详解
目录使用范例常用的对象–Tag常用的对象–NavigableString常用的对象–BeautifulSoup常用的对象–Comment对文档树的遍历tag中包含多个字符串的情况.stripped_strings去除空白内容搜索文档树–find和find_allselect方法(各种查找)获取内容总结使用范例frombs4importBeautifulSoup#创建BeautifulSoup对象#使用lxml来进行解析soup=BeautifulSoup(html,"lxml")print(soup.prettify())返回结果常用的对象–Tag就是HTML中的...
继续阅读 >