带有可选标签的 Python BeautifulSoup

发布于 2024-11-18 08:26:11 字数 928 浏览 0 评论 0原文

让我举一个例子:

    from BeautifulSoup import BeautifulStoneSoup
    root = '''  <all2>
                    <images>
                        <image>
                            <name> Picture </name>
                            <url> www.thing.com</url>
                        </image>
                        <image> 
                            <name> Another one! </name>
                        </image>
                    </images>
                </all2>
                      '''

soup = BeautifulStoneSoup(root)
for img in soup.all2.images.findAll("image"):
    iname = img.i_name
    iurl = img.url
    print iname
    print iurl

让标签是可选的。在这种情况下,第二次迭代将无法找到标签,并且会抛出异常:

AttributeError: 'NoneType' object has no attribute 'renderContents'

如果没有出现可选标签,我希望 iurl 为 None 。这可能吗?或者是我对XML的理解错误。

Let me set up an example:

    from BeautifulSoup import BeautifulStoneSoup
    root = '''  <all2>
                    <images>
                        <image>
                            <name> Picture </name>
                            <url> www.thing.com</url>
                        </image>
                        <image> 
                            <name> Another one! </name>
                        </image>
                    </images>
                </all2>
                      '''

soup = BeautifulStoneSoup(root)
for img in soup.all2.images.findAll("image"):
    iname = img.i_name
    iurl = img.url
    print iname
    print iurl

Let the tag be optional. In this case, the second iteration will fail to to find a tag, and an exception will be thrown:

AttributeError: 'NoneType' object has no attribute 'renderContents'

I would like for iurl to be None if an optional tag does not appear. Is this possible? Or is my XML understanding wrong.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朮生 2024-11-25 08:26:11

你想要“nameTag”做什么???

BeautifulSoup 文档清楚地告诉您使用

  iname = img.name.renderContents()
  iurl = img.url.renderContents()

零理由在这里发明新的语法或语义

What do you want with 'nameTag'???

The BeautifulSoup documentation clearly tells you to use

  iname = img.name.renderContents()
  iurl = img.url.renderContents()

Zero reason to invent new syntax or semantics here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文