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 开发者_JAVA百科me [<atom.Link object at 0x020E6E90>, <atom.Link object at 0x020E6EF0>]
What's the 3rd part of the puzzle?
You can get the URL from the link's href
attribute:
for link in entry.link:
print link.href
精彩评论