Python3实现爬取简书首页文章标题和文章链接的方法【测试可用】
程序员文章站
2022-10-18 13:04:18
本文实例讲述了python3实现爬取简书首页文章标题和文章链接的方法。分享给大家供大家参考,具体如下:
from urllib import request
f...
本文实例讲述了python3实现爬取简书首页文章标题和文章链接的方法。分享给大家供大家参考,具体如下:
from urllib import request from bs4 import beautifulsoup #beautiful soup是一个可以从html或xml文件中提取结构化数据的python库 #构造头文件,模拟浏览器访问 url="http://www.jianshu.com" headers = {'user-agent':'mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/55.0.2883.87 safari/537.36'} page = request.request(url,headers=headers) page_info = request.urlopen(page).read().decode('utf-8')#打开url,获取httpresponse返回对象并读取其resposnebody # 将获取到的内容转换成beautifulsoup格式,并将html.parser作为解析器 soup = beautifulsoup(page_info, 'html.parser') # 以格式化的形式打印html #print(soup.prettify()) titles = soup.find_all('a', 'title')# 查找所有a标签中class='title'的语句 ''''' # 打印查找到的每一个a标签的string和文章链接 for title in titles: print(title.string) print("http://www.jianshu.com" + title.get('href')) ''' #open()是读写文件的函数,with语句会自动close()已打开文件 with open(r"d:\articles.txt","w") as file: #在磁盘以只写的方式打开/创建一个名为 articles 的txt文件 for title in titles: file.write(title.string+'\n') file.write("http://www.jianshu.com" + title.get('href')+'\n\n')
本机测试运行结果如下:
更多关于python相关内容可查看本站专题:《python socket编程技巧总结》、《python正则表达式用法总结》、《python数据结构与算法教程》、《python函数使用技巧总结》、《python字符串操作技巧汇总》、《python入门与进阶经典教程》及《python文件与目录操作技巧汇总》
希望本文所述对大家python程序设计有所帮助。