gpt4 book ai didi

python - 解析由标签分隔的部分

转载 作者:行者123 更新时间:2023-12-01 05:04:51 25 4
gpt4 key购买 nike

我需要对由标题分隔的元素进行分类。我正在努力制定一个 xpath 表达式或简单的解析器,可以将我的项目分组为标题标签给出的部分。

我了解如何抓取元素位于同一级别或元素级别由容器给出的列表,但我正在努力弄清楚如何解析容器由元素分隔的数据。例如:

<div>
<h1>section a</h1>
<item>221</item>
<item>453</item>
<item>473</item>
<h1>section b</h1>
<item>430</item>
<item>493</item>
<h1>section c</h1>
<item>694</item>
<item>931</item>
</div>

是否有一些范例方法可以使用 xpath 来记录结构?有没有办法迭代 scrapy 选择器,以便我看到 dom View 并检测这些部分的开始和停止?

最佳答案

使用 XPath 的一种解决方案是计算 div 下节点的前一个 h1 同级节点,这些节点本身不是 h1

$ ipython
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
Type "copyright", "credits" or "license" for more information.

IPython 1.2.1 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.

In [1]: import scrapy

In [2]: selector = scrapy.Selector(text="""
<div>
<h1>section a</h1>
<item>221</item>
<item>453</item>
<item>473</item>
<h1>section b</h1>
<item>430</item>
<item>493</item>
<h1>section c</h1>
<item>694</item>
<item>931</item>
</div>""")

In [3]: for i, header in enumerate(selector.xpath('.//div/h1'), start=1):
print header.xpath('normalize-space()').extract()
between = selector.xpath(""".//div/node()[count(preceding-sibling::h1)=%d]
[not(self::h1)]""" % i)
print between.extract()
...:
[u'section a']
[u'\n', u'<item>221</item>', u'\n', u'<item>453</item>', u'\n', u'<item>473</item>', u'\n']
[u'section b']
[u'\n', u'<item>430</item>', u'\n', u'<item>493</item>', u'\n']
[u'section c']
[u'\n', u'<item>694</item>', u'\n', u'<item>931</item>', u'\n']

关于python - 解析由标签分隔的部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25259121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com