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
"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/
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