python批量获取html内body内容的实例
Python  /  管理员 发布于 7年前   171
现在有一批完整的关于介绍城市美食、景点等的html页面,需要将里面body的内容提取出来
方法:利用python插件beautifulSoup获取htmlbody标签的内容,并批量处理。
# -*- coding:utf8 -*- from bs4 import BeautifulSoupimport osimport os.pathimport sysreload(sys) sys.setdefaultencoding('utf8') def printPath(level,path):global allFileNum#所有文件夹,第一个字段是此目录的级别dirList = [] #所有文件fileList = [] #返回一个列表,其中包含在目录条目的名称files = os.listdir(path) #先添加目录级别dirList.append(str(level)) for f in files:if(os.path.isdir(path+'/'+f)):#排除隐藏文件夹,因为隐藏文件夹过多if(f[0] == '.'):passelse:#添加隐藏文件夹dirList.append(f)if(os.path.isfile(path+'/'+f)):#添加文件fileList.append(f)return (dirList,fileList) #将文件html文件抓取并写入指定txt文件def getAndInsert(rootdir,savepath,path):global file_numf_list = os.listdir(rootdir+'/'+path)for i in f_list:temp = os.path.splitext(i)[0]for num in range(1,11):if(i==str(num)+'.html'):#print rootdir+'/'+path+'/'+iobjFile = open(rootdir+'/'+path+'/'+i)soup = BeautifulSoup(objFile)arr = []for child in soup.body:arr.append(child)if os.path.exists(savepath+'/'+path):passelse:os.makedirs(savepath+'/'+path)f = open(savepath+'/'+path+'/'+temp+'.txt','w')for k,v in enumerate(arr):if k!=1:f.write(str(v))f.close()print path+'/'+i+' is running'file_num = file_num + 1 rootdir = '../zips2'dirList,fileList = printPath(1,rootdir) savepath = "../testC"file_num = 0 for fn in dirList:if(fn == '1'):passelse:getAndInsert(rootdir,savepath,fn)print fn+' is ending'print '一共完成'+str(file_num)+'个城市的提取'
以上这篇python批量获取html内body内容的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号