import requests # 请求,模拟在浏览器的操作
import bs4 # 解析
url = "https://www.gushiwen.cn/"
def get_gushiwen():
response = requests.get(url)
print(response.status_code)
data = response.text
# data2 = response.content
# data3 = data2.decode()
# print(type(data), type(data2),type(data3))
ret = bs4.BeautifulSoup(data, "html.parser")
all_a = ret.find_all("a", {"target":"_blank"})
for i in all_a:
# <a href="https://so.gushiwen.cn/authorv_b90660e3e492.aspx" target="_blank">李白</a>
# 根据href属性和authorv字符串,过滤出来所有的诗人
href = i["href"]
if href.count("authorv")>0:
print(i.text, end=" ")
get_gushiwen()
子龙烜
- 粉丝: 750
- 资源: 16
最新资源
- 自动送餐设备sw16可编辑全套技术资料100%好用.zip
- 自动丝印链板线(sw19可编辑+工程图)全套技术资料100%好用.zip
- Meterpreter框架下常见命令及其应用详解
- 自行车立体车库 sw16全套技术资料100%好用.zip
- 自动贴胶带贴膜产线sw17可编辑全套技术资料100%好用.zip
- 多功能集成工具 SpiritTools 2.0.1 版本功能更新与优化
- 自动纸板捆扎机1.5米sw16可编辑全套技术资料100%好用.zip
- python脚本-生成MySQL数据字典
- enhanced chop melons and vegetables-啊哦111
- 字符串-圣诞树c++语言编程代码
- christmasTree-圣诞树html网页代码
- 数据结构与算法 -二叉树的深度
- shell-scripts-python圣诞树
- chdthesis-学术规范与论文写作
- Java-Interview-Advanced-啊哦111
- iot-iita-http
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈