Differences between revisions 2 and 3
Revision 2 as of 2008-02-01 13:47:50
Size: 385
Editor: 59
Comment:
Revision 3 as of 2011-08-03 11:01:12
Size: 385
Editor: localhost
Comment: converted to 1.6 markup
No differences found!

[XML], [HTML] [Parsing]을 위한 [Python] 모듈. invaliad한 문서형식도 가능.

http://www.crummy.com/software/BeautifulSoup/

예제들

   1 from BeautifulSoup import BeautifulSoup
   2 soup = BeautifulSoup(html_string)
   3 for tr in soup.findAll('tr')
   4     print tr.find('th').contents+ [c.contents[0] for c in tr.findAll('td')]


CategoryProgramLibrary

BeautifulSoup (last edited 2011-11-23 14:30:58 by 211)

web biohackers.net