Re: need help getting xml feed from a url

2006-07-19 Thread Stefan Behnel
Shan wrote: > If i have a list of urls how can I extract or pull their respective xml > feeds? from lxml import etree feeds = [] for url in my_url_list: feeds.append( etree.parse(url) ) For the rest, find out about the ElementTree API. Stefan -- http://mail.python.org/mailma

Re: need help getting xml feed from a url

2006-07-18 Thread John Bokma
"Shan" <[EMAIL PROTECTED]> wrote: > If i have a list of urls how can I extract or pull their respective xml > feeds? What have you tried so far? -- John MexIT: http://johnbokma.com/mexit/ personal page: http://johnbokma.com/

need help getting xml feed from a url

2006-07-18 Thread Shan
If i have a list of urls how can I extract or pull their respective xml feeds? -- http://mail.python.org/mailman/listinfo/python-list