标签: python beautifulsoup
我想深入研究我的html,特别是我希望得到第一个html表,它是一个看起来像这样的表单:
<form method="POST" action="/parts.html"> .. <table ...> ... </table> .. </form>
因此,此表格对每种产品都有<tr>。
<tr>
我的目标是遍历每个tablerow,然后我需要提取产品名称,价格,图片网址等。
我的策略应该是什么,以及我应该关注哪些美丽汤的方法?
答案 0 :(得分:1)
继续阅读。
http://www.crummy.com/software/BeautifulSoup/documentation.html#Iterating%20over%20a%20Tag
http://www.crummy.com/software/BeautifulSoup/documentation.html#nextSibling%20and%20previousSibling