鱼C论坛

 找回密码
 立即注册
查看: 1385|回复: 9

[已解决]爬取笔趣阁发现的问题

[复制链接]
发表于 2020-8-10 12:55:01 | 显示全部楼层 |阅读模式

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

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

x
import requests
import bs4

headers = {
        'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'
    }
url = "http://www.xbiquge.la/0/951/827334.html"
res = requests.get(url=url, headers=headers)
res.encoding = "utf-8"
soup = bs4.BeautifulSoup(res.text, "html.parser")
targets = soup.find_all("div", id="content")
for each in targets:
    print(each)
    for i in each:
        print(i)

为什么要在加个for循环才能看到小说的内容?
最佳答案
2020-8-10 14:09:38

因为 soup.find_all("div", id="content") 提取到的是所有 div 标签下 id 属性为 content 的 bs4 对象数据,你需要 for 循环将对象中的内容重新提取使用才行

帮你稍微改了下代码,去掉标签保留文本内容了:
import requests
import bs4

headers = {
        'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'
    }
url = "http://www.xbiquge.la/0/951/827334.html"
res = requests.get(url=url, headers=headers)
res.encoding = "utf-8"
soup = bs4.BeautifulSoup(res.text, "html.parser")
targets = soup.find_all("div", id="content")
for each in targets:
    for i in each:
        if i.string == None:
            continue
        print(i.string)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-10 13:15:07 | 显示全部楼层

回帖奖励 +1 鱼币

鱼币
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-10 13:16:30 | 显示全部楼层
因为 bs4.BeautifulSoup.find_all 返回的是迭代器。

点评

最佳 404~  发表于 2020-8-10 13:17
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-10 13:17:41 | 显示全部楼层

回帖奖励 +1 鱼币

3 楼正解
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-10 13:21:28 | 显示全部楼层
我也好想。爬小说
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-10 13:24:39 | 显示全部楼层

我写了一个简陋版的程序,能爬取小说。
戳这里
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-10 14:09:38 | 显示全部楼层    本楼为最佳答案   

因为 soup.find_all("div", id="content") 提取到的是所有 div 标签下 id 属性为 content 的 bs4 对象数据,你需要 for 循环将对象中的内容重新提取使用才行

帮你稍微改了下代码,去掉标签保留文本内容了:
import requests
import bs4

headers = {
        'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'
    }
url = "http://www.xbiquge.la/0/951/827334.html"
res = requests.get(url=url, headers=headers)
res.encoding = "utf-8"
soup = bs4.BeautifulSoup(res.text, "html.parser")
targets = soup.find_all("div", id="content")
for each in targets:
    for i in each:
        if i.string == None:
            continue
        print(i.string)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-10 15:19:41 | 显示全部楼层
Twilight6 发表于 2020-8-10 14:09
因为 soup.find_all("div", id="content") 提取到的是所有 div 标签下 id 属性为 content 的 bs4 对象数 ...

了解明白了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-12 16:57:32 | 显示全部楼层
sunrise085 发表于 2020-8-10 13:24
我写了一个简陋版的程序,能爬取小说。
戳这里

顶,
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-19 11:13

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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