GBase Snippets Feed,如何提取 URL?

发布于 2024-10-24 15:51:40 字数 421 浏览 4 评论 0原文

在此示例中 http://code.google.com/apis/base/ docs/1.0/pythondevguide.html(搜索entry.title.text)它给出了entry.title.text作为Snippets feed属性的唯一示例。我在那里放什么来获取 URL?我能够找到entry.link,但它只给我[,]

谜题的第三部分是什么?

In this example http://code.google.com/apis/base/docs/1.0/pythondevguide.html (search for entry.title.text) it gives entry.title.text as the only example for a Snippets feed attribute. What do I put there to get the URL? I was able to find entry.link but it only gives me [<atom.Link object at 0x020E6E90>, <atom.Link object at 0x020E6EF0>]

What's the 3rd part of the puzzle?

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

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

发布评论

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

评论(1

清风挽心 2024-10-31 15:51:40

您可以从链接的 href 属性获取 URL:

for link in entry.link:
    print link.href

You can get the URL from the link's href attribute:

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