view OpmlImport.py @ 197:e604c32f67aa

normalize the published date if the feed contains none
author dirk
date Tue, 24 Jan 2012 10:08:45 +0100
parents b8d209fdad14
children bb3c851b18b1
line wrap: on
line source


from Feed import Feed
from xml.dom.minidom import parse

def createFeedsFromOPML(session=None, filename=None):
    document = parse(filename)
    outlines = document.getElementsByTagName("outline")
    for outline in outlines:
        url = outline.getAttribute("xmlUrl")
        title = outline.getAttribute("title")
        
        feed = Feed(title, url)
        session.add(feed)
    session.commit()