Remove old import.py.
authorNelson Elhage <nelhage@mit.edu>
Thu, 31 Dec 2009 17:23:03 +0000 (12:23 -0500)
committerNelson Elhage <nelhage@mit.edu>
Thu, 31 Dec 2009 17:23:03 +0000 (12:23 -0500)
import.py [deleted file]

diff --git a/import.py b/import.py
deleted file mode 100755 (executable)
index 54edbe8..0000000
--- a/import.py
+++ /dev/null
@@ -1,15 +0,0 @@
-#!usr/bin/python
-from lxml import html
-import yaml
-
-tree = html.fromstring(open('/tmp/iron-blogger.html').read())
-
-who = {}
-for tr in list(tree.xpath('//tr'))[1:]:
-    username = str(tr.xpath('td[1]/tt/text()')[0])
-    links = tr.xpath('td[2]/a')
-    links = [(l.text, l.attrib['href']) for l in links]
-    start = str(tr.xpath('td[3]/text()')[0]).strip()
-    who[username] = dict(links=links, start=start)
-
-print yaml.safe_dump(who)

Benjamin Mako Hill || Want to submit a patch?