view OpmlImport.py @ 231:16fa9f090c36

hard-code python2
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 25 Sep 2014 08:06:51 +0200
parents 699d8f1cebd4
children
line wrap: on
line source

# -*- coding: utf-8 -*-
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()