weixin_51643586 2021-04-06 12:31 采纳率: 100%
浏览 140
已采纳

Python爬取笔趣阁小说只保存第一章,哪里出错了

from selenium import webdriver
from bs4 import BeautifulSoup
import time

PATH = 'C:\Program Files\chromedriver.exe'
driver = webdriver.Chrome(PATH)
driver.get('http://www.xbiquge.la/41/41495/18842440.html')
content = driver.page_source.encode('utf-8').strip()
soup = BeautifulSoup(content, 'lxml')


# get information
def getinfo():
    chapter_name = soup.find('div', class_='bookname').h1
    chapter_info = soup.find('div', id='content')
    with open(r'C:\Users\14155\Desktop\Python\爬虫实战案例\笔趣阁\全属性武道\{}.txt'.format(chapter_name.text[4:]), 'w',
              encoding='utf-8') as f:
        f.write(chapter_name.text.strip() + "\n\n" + chapter_info.text.replace(' ', ''))


# next chapter
def nextchapter():
    next_chapter = driver.find_element_by_link_text('下一章')
    next_chapter.click()


def main():
    for i in range(5):
        getinfo()
        nextchapter()


main()
  • 写回答

3条回答 默认 最新

  • 木三136 2021-04-06 14:02
    关注

    您的soup只访问了一次,就是说getinfo()这个函数一直在对第一章进行操作

    您可以在每次使用getinfo()这个函数时,先更改一下soup

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失