鱼C论坛

 找回密码
 立即注册
查看: 1219|回复: 2

[已解决]BeautifulSoup find()问题

[复制链接]
发表于 2020-7-4 11:17:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 fytfytf 于 2020-7-4 11:18 编辑

import bs4
import urllib.request
import urllib.parse
import re

name=str(input('请输入搜索内容(以下搜索内容来自百度百科):'))
name=urllib.parse.quote(name)

head={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36 LBBROWSER'}

req=urllib.request.Request('https://baike.baidu.com/item/{}'.format(name),headers=head)
response=urllib.request.urlopen(req)
html=response.read().decode('utf-8')

soup=bs4.BeautifulSoup(html,'lxml')
jishu=0


print(soup.find('title').text)

print (soup.head.find(name=re.compile('description')))#出错代码

标红的这句抓百度百科,返回值永远是都是None,明明是按照格式的

TIM图片20200704111742.png
最佳答案
2020-7-4 14:33:04


这样试试吧:
import bs4
import urllib.request
import urllib.parse
import re

name=str(input('请输入搜索内容(以下搜索内容来自百度百科):'))
name=urllib.parse.quote(name)

head={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36 LBBROWSER'}

req=urllib.request.Request('https://baike.baidu.com/item/{}'.format(name),headers=head)
response=urllib.request.urlopen(req)
html=response.read().decode('utf-8')

soup=bs4.BeautifulSoup(html,'lxml')
jishu=0


print(soup.find('title').text)

print (soup.head.find_all('meta')[3]['content'])
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-4 14:33:04 | 显示全部楼层    本楼为最佳答案   


这样试试吧:
import bs4
import urllib.request
import urllib.parse
import re

name=str(input('请输入搜索内容(以下搜索内容来自百度百科):'))
name=urllib.parse.quote(name)

head={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.98 Safari/537.36 LBBROWSER'}

req=urllib.request.Request('https://baike.baidu.com/item/{}'.format(name),headers=head)
response=urllib.request.urlopen(req)
html=response.read().decode('utf-8')

soup=bs4.BeautifulSoup(html,'lxml')
jishu=0


print(soup.find('title').text)

print (soup.head.find_all('meta')[3]['content'])
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-7-4 22:46:32 | 显示全部楼层
find函数里name参数填的是节点的名字,不是节点属性。也是巧了这个属性叫name,让你混淆了。
print(soup.head.find(name='meta', attrs={'name': 'description'}))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-20 03:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表