Created
August 17, 2017 06:52
-
-
Save xiaom/7a973e0ca60af6518ab02b4691f60124 to your computer and use it in GitHub Desktop.
tei_to_fulltext.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NS = {'tei': 'http://www.tei-c.org/ns/1.0'} | |
def tei_to_fulltext(tei): | |
from lxml import etree | |
from six import text_type | |
parser = etree.XMLParser(encoding='UTF-8', recover=True) | |
tei = tei if not isinstance(tei, text_type) else tei.encode('utf-8') | |
root = etree.fromstring(tei, parser) | |
return get_fulltext(root) | |
def get_fulltext(root): | |
"""TODO: move it to invenio_grobid`""" | |
return ' '.join(root.xpath( | |
'/tei:TEI/tei:text//text()', | |
namespaces=NS)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment