aboutsummaryrefslogtreecommitdiffstats
path: root/parsepdftext.py
diff options
context:
space:
mode:
Diffstat (limited to 'parsepdftext.py')
-rw-r--r--parsepdftext.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/parsepdftext.py b/parsepdftext.py
deleted file mode 100644
index d1af47e..0000000
--- a/parsepdftext.py
+++ /dev/null
@@ -1,21 +0,0 @@
-import sys
-from xml.etree import ElementTree as ET
-
-def parse_coords(word):
- # coordinates are in dpi, and computed from the top left corner
- return tuple([word.attrib[c] for c in ['xMin', 'xMax', 'yMin', 'yMax']])
-
-def parse_book(book):
- document = ET.parse(book)
- ns = 'http://www.w3.org/1999/xhtml'
-
- words = []
- coords = []
- for page in document.findall('.//{{{0}}}page'.format(ns)):
- words.append([word.text for word in page.getchildren()])
- coords.append([parse_coords(word) for word in page.getchildren()])
- return {"words": words, "coords": coords}
-
-if __name__=="__main__":
- book = parse_book(sys.argv[1])
- print book['words'][14]