鱼C论坛

 找回密码
 立即注册
查看: 1137|回复: 0

[作品展示] 抓取小说(1.2.1)

[复制链接]
发表于 2020-5-21 11:26:04 | 显示全部楼层 |阅读模式

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

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

x
上代码:
import requests
import json
def get():
    url = "http://book.zongheng.com/api/chapter/chapterinfo?bookId=963124&chapterId=60681352&_=1590030263307"
    headers = {
        'Referer':'http://book.zongheng.com/totaltome/963124/60681352.html',
        'User-Agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36'
        }
    res = requests.get(url,headers=headers).text
    target = json.loads(res)
    p = target['data']['content']
    p = p.replace("<p>",' ')
    p = p.replace("</p>",' ')
    f = open("xiaoshuo.txt",'w')
    f.write(p)
    f.close()
    
def main():
    get()
if __name__ == "__main__":
    main()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-21 02:53

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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