ActivePython and Amara

alex23 wuwei23 at gmail.com
Thu Dec 15 00:33:05 EST 2005


Jay wrote:

> [T]here are multiple items in channel, how do i tell it to
> go to the next item and get that title??

channel = rssDigg.find('//channel')
for item in channel.findall('item'):
    print item.find('title').text

-alex23




More information about the Python-list mailing list