吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2329|回复: 2
收起左侧

[Python 转载] 加班上通宵无聊,爬本小说读读

[复制链接]
carole1102 发表于 2019-11-30 22:48
听说斗破苍穹,恐怖如斯,爬下来瞧瞧。。。。。

import requests
import re
import time

hds = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36'
}

f = open(r'e:\book.txt','a+',encoding='utf-8')

def get_txt(url):
    res = requests.get(url,headers = hds)
    if res.status_code == 200:
        contents = re.findall('<p>(.*?)</p>',res.content.decode('utf-8'),re.S)
        for content in contents:
            f.write(content + '\n')
    else:
        pass

if __name__ == '__main__':
    urls = ['http://www.doupoxs.com/doupocangqiong/{}.html'.format(str(i)) for i in range(2,1647)]
    for url in urls:
        get_txt(url)
    time.sleep(1)

f.close()

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

autist 发表于 2019-11-30 23:48
刚接触两天的小萌新睁大了双眼
zxshouxian 发表于 2019-12-1 17:52
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 17:50

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

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