摘要: 实战准备:要爬取的url:https://www.shicimingju.com/book/sanguoyanyi.html 实战要求:爬取诗词名句网站中的三国演义文章,将每章的标题和内容写入自己的项目文件(sanguo.txt) (本次爬取使用bs4) 1 import requests 2 # 阅读全文
posted @ 2023-10-22 22:18 敲代码的PinkPig 阅读(114) 评论(0) 推荐(0) 编辑
摘要: from lxml import etree import os import requests if __name__ == "__main__": #爬取4k壁纸的网站url url = "http://pic.netbian.com/4kfengjing/" hearder = { 'User 阅读全文
posted @ 2023-10-22 22:18 敲代码的PinkPig 阅读(30) 评论(0) 推荐(0) 编辑
摘要: from lxml import etree import requests import os if __name__ == "__main__" : header = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) Apple 阅读全文
posted @ 2023-10-22 22:16 敲代码的PinkPig 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 超级鹰网址:https://www.chaojiying.com/ 登录超级鹰后下载对应的python的文档,解压缩后打开chaojiying.py文件,在该文档结尾处有一处问题需要加上括号 print(chaojiying.PostPic(im, 1902)) 如何使用超级鹰进行打码:1.将cha 阅读全文
posted @ 2023-10-22 22:16 敲代码的PinkPig 阅读(139) 评论(0) 推荐(0) 编辑