Iウェブは、すべてが他のタグを含むタグをwithing取得...こする
<div class="example">
<p> text <a href="#"> link </a> text</p>
</div>
は、私はクラスの例でのdiv内
<p> text <a href="#"> link </a> text</p>
ので、すべてを取得したい、次のタグを持っています。 私は私がその後、
description = ' '.join('<p>{0}</p>'.format(paragraph) for paragraph in description)
と一緒に参加したが、直接のdiv内のコンテンツを取得する方法がなければならない段落タグのリストを与える
from lxml import html
page = requests.get('X')
tree = html.fromstring(page.content)
description = tree.xpath('//div[@class="example"]/p//text()')
を使用していますか? おかげ カール