开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 15890|回复: 3
收起左侧

[源码分享] Python网络爬虫,小说下载

[复制链接]
结帖率:100% (13/13)
发表于 2020-4-28 19:27:28 | 显示全部楼层 |阅读模式   江苏省淮安市
1from bs4 import BeautifulSoup
2import requests,os,re
3
4
5
6
7#获取小说章节与链接
8if __name__ == "__main__":
9    server = "https://www.abcxs.com"
10    url = "https://www.abcxs.com/book/13417/#main"
11    r = requests.get(url)
12    html = r.text
13
14    #获取书名
15    title_bf = BeautifulSoup(html)
16    title = title_bf.find_all(property = 'og:title')
17    print(title)
18    #data =  re.search( '<meta content="(.*?)" property=', title, re.M|re.I)
19    searchObj = re.search( '<meta content="(.*?)" property=', str(title), re.M|re.I)
20    if searchObj:
21        print ("searchObj.group(1) : ", searchObj.group(1))
22        ShuMing = searchObj.group(1)
23    else:
24        print ("Nothing found!!")
25
26    #获取小说目录
27
28    div_bf = BeautifulSoup(html)
29    div = div_bf.find_all('div',class_="listmain")
30    #print(div[0])
31    a_bf = BeautifulSoup(str(div[0]))
32    a = a_bf.find_all('a')
33    for each in a:
34        print(each.string, server + each.get('href'))
35
36        #创建文件目录
37        path = "J:/python/Python/我的Python学习/爬虫及文件写入/" + ShuMing
38        if not os.path.exists(path):
39            os.mkdir(path)
40        #获取正文内容
41        if __name__ == "__main__":
42            r = requests.get(server + each.get('href'))
43            html = r.text
44            bf = BeautifulSoup(html)
45            tetx_content = bf.find_all('div', class_ = 'showtxt')
46            print(tetx_content[0].text.replace('\xa0'*8,'\n'))
47            #tetx_content = bf.replace(u'\xa0', u' ')
48
49            #写入文件
50            with open(path + "/" + each.string + '.txt', 'w') as f:
51                #f.file.write(tetx_content[0].content.replace(u'\xa0,u'))
52                f.write(tetx_content[0].text.replace(u'\xa0', u' '))

结帖率:100% (33/33)

签到天数: 14 天

发表于 2020-11-28 00:27:56 | 显示全部楼层   河南省平顶山市
讲究。。。
回复 支持 反对

使用道具 举报

结帖率:100% (13/13)

签到天数: 2 天

 楼主| 发表于 2020-5-27 19:18:07 | 显示全部楼层   江苏省淮安市
michell12 发表于 2020-5-27 18:17
你这连粘贴都是胡乱粘的

我哪儿胡乱粘贴了?
回复 支持 反对

使用道具 举报

发表于 2020-5-27 18:17:03 | 显示全部楼层   河南省洛阳市
你这连粘贴都是胡乱粘的
回复 支持 反对

使用道具 举报

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

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

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