首页| 新闻| 娱乐| 游戏| 科普| 文学| 编程| 系统| 数据库| 建站| 学院| 产品| 网管| 维修| 办公| 热点
获取单独一个table,代码如下:
#!/usr/bin/env python3# _*_ coding=utf-8 _*_import csvfrom urllib.request import urlopenfrom bs4 import BeautifulSoupfrom urllib.request import HTTPErrortry: html = urlopen("http://en.wikipedia.org/wiki/Comparison_of_text_editors")except HTTPError as e: print("not found")bsObj = BeautifulSoup(html,"html.parser")table = bsObj.findAll("table",{"class":"wikitable"})[0]if table is None: print("no table"); exit(1)rows = table.findAll("tr")csvFile = open("editors.csv",'wt',newline='',encoding='utf-8')writer = csv.writer(csvFile)try: for row in rows: csvRow = [] for cell in row.findAll(['td','th']): csvRow.append(cell.get_text()) writer.writerow(csvRow)finally: csvFile.close()
获取所有table,代码如下:
#!/usr/bin/env python3# _*_ coding=utf-8 _*_import csvfrom urllib.request import urlopenfrom bs4 import BeautifulSoupfrom urllib.request import HTTPErrortry: html = urlopen("http://en.wikipedia.org/wiki/Comparison_of_text_editors")except HTTPError as e: print("not found")bsObj = BeautifulSoup(html,"html.parser")tables = bsObj.findAll("table",{"class":"wikitable"})if tables is None: print("no table"); exit(1)i = 1for table in tables: fileName = "table%s.csv" % i rows = table.findAll("tr") csvFile = open(fileName,'wt',newline='',encoding='utf-8') writer = csv.writer(csvFile) try: for row in rows: csvRow = [] for cell in row.findAll(['td','th']): csvRow.append(cell.get_text()) writer.writerow(csvRow) finally: csvFile.close() i += 1
以上这篇python 获取页面表格数据存放到csv中的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。
手机内存不足怎么清理 手机提
怎样设置虚拟内存?
解决内存不足妙方
芭蕾舞蹈表演,真实美到极致
下午茶时间,悠然自得的休憩
漫天大雪天空飞舞展现最美雪景
充斥这繁华奢靡气息的城市迪拜风景图片
肉食主义者的最爱美食烤肉图片
夏日甜心草莓美食图片
人逢知己千杯少,喝酒搞笑图集
搞笑试卷,学生恶搞答题
新闻热点
疑难解答
图片精选
Python入门基础教程 超详细1小时学
python连接MySQL数据库实例分析
wxPython定时器wx.Timer简单应用实
浅谈python中截取字符函数strip,lst
网友关注