Python BeautifulSoup scrape tables

匿名 (未验证) 提交于 2019-12-03 01:55:01

问题:

I am trying to create a table scrape with BeautifulSoup. I wrote this Python code:

import urllib2 from bs4 import BeautifulSoup  url = "http://dofollow.netsons.org/table1.htm"  # change to whatever your url is  page = urllib2.urlopen(url).read() soup = BeautifulSoup(page)  for i in soup.find_all('form'):     print i.attrs['class'] 

I need to scrape Nome, Cognome, Email.

回答1:

Loop over table rows (tr tag) and get the text of cells (td tag) inside:

for tr in soup.find_all('tr')[2:]:     tds = tr.find_all('td')     print "Nome: %s, Cognome: %s, Email: %s" % \           (tds[0].text, tds[1].text, tds[2].text) 

prints:

FYI, [2:] slice here is to skip two header rows.

UPD, here's how you can save results into txt file:

with open('output.txt', 'w') as f:     for tr in soup.find_all('tr')[2:]:         tds = tr.find_all('td')         f.write("Nome: %s, Cognome: %s, Email: %s\n" % \               (tds[0].text, tds[1].text, tds[2].text)) 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!