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

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to