annotate OpmlImport.py @ 257:75b81da8d7a5

convert the feed entry timestamps to arango compatible date strings in migration
author Dirk Olmes <dirk@xanthippe.ping.de>
date Tue, 12 Mar 2019 02:38:41 +0100
parents 699d8f1cebd4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
217
bb3c851b18b1 add source file endcoding header
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 63
diff changeset
1 # -*- coding: utf-8 -*-
63
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")
218
699d8f1cebd4 unify imports, especially Qt imports. Use consistent super syntax
Dirk Olmes <dirk@xanthippe.ping.de>
parents: 217
diff changeset
11
63
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()