annotate OpmlImport.py @ 190:b7d41325386b

switch to the couchdb backend as default
author dirk
date Wed, 21 Sep 2011 12:52:34 +0200
parents b8d209fdad14
children bb3c851b18b1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
63
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
1
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
2 from Feed import Feed
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
3 from xml.dom.minidom import parse
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
4
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
5 def createFeedsFromOPML(session=None, filename=None):
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
6 document = parse(filename)
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
7 outlines = document.getElementsByTagName("outline")
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
8 for outline in outlines:
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
9 url = outline.getAttribute("xmlUrl")
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
10 title = outline.getAttribute("title")
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
11
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
12 feed = Feed(title, url)
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
13 session.add(feed)
b8d209fdad14 helper class to create Feed objects from an OPML feed
dirk@xanthippe.ping.de
parents:
diff changeset
14 session.commit()