私はhtmlに次のコードを持っています
<section>
<section>
<h2>Title1</h2>
<p>Text1</p>
<p>Text1</p>
</section>
<section>
<h2>Title2</h2>
<p>Text2</p>
<p>Text2</p>
</section>
<section>
<h2>Title3</h2>
<p>Text3</p>
<p>Text3</p>
</section>
</section>
<section>
<h2>Title2-1</h2>
<p>Text2-1</p>
<p>Text2-1</p>
</section>
<section>
<h2>Title3-1</h2>
<p>Text3-1</p>
<p>Text3-1</p>
</section>
class RUSpider(BaseSpider):
name = "ru"
allowed_domains = ["http://127.0.0.1:8000/"]
start_urls = [
"http://127.0.0.1:8000/week2/1_am/#/",
"http://127.0.0.1:8000/week1/1/",
"http://127.0.0.1:8000/week3/1_am/"
]
rules = [
Rule(SgmlLinkExtractor(), follow=True)
]
def parse(self, response):
filename = response.url.split("/")[3]
hxs = HtmlXPathSelector(response)
divs = hxs.select('//div')
sections = divs.select('//section').extract()
# print sections.extract
#class definition for scrapy and html selector
for each in sections: #iterate over loop [above sections]
soup = BeautifulSoup(each)
sp= soup.prettify()
elements = soup.findAll("section".split())
print len(elements),'sublength'
if len(elements ) > 1:
for element in elements:
for subelement in element:
print subelement,'element'
else:
item = RItem() # create Index Item
item['html_content'] = each
print each
yield item
一部の結果は正しくフォーマットされていますが、サブセクションのない一部のセクションは個々の要素に分割されています。
各セクションを個別に希望します。つまり、1つのセクションには他のセクションがあるからです。ループを追跡できるように、これらのセクションをループして個別に取得したいと考えています。一部のセクションにはサブセクションがないため、それらをループする必要はありません。
BeautifulSoupでこれを行うより良い方法はありますか? 次の出力が欲しい
<section>
<h2>Title1</h2>
<p>Text1</p>
<p>Text1</p>
</section>
<section>
<h2>Title2</h2>
<p>Text2</p>
<p>Text2</p>
</section>
<section>
<h2>Title3</h2>
<p>Text3</p>
<p>Text3</p>
</section>
<section>
<h2>Title2-1</h2>
<p>Text2-1</p>
<p>Text2-1</p>
</section>
<section>
<h2>Title3-1</h2>
<p>Text3-1</p>
<p>Text3-1</p>
</section>