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/mailman/listinfo/python-list