Skip to content

Instantly share code, notes, and snippets.

@multinucliated
Forked from etienned/extractdocx.py
Created September 4, 2020 08:13
Show Gist options
  • Save multinucliated/0fc195b4b727c9029ed4d16679e861f3 to your computer and use it in GitHub Desktop.
Save multinucliated/0fc195b4b727c9029ed4d16679e861f3 to your computer and use it in GitHub Desktop.
Simple function to extract text from MS XML Word document (.docx) without any dependencies.
try:
from xml.etree.cElementTree import XML
except ImportError:
from xml.etree.ElementTree import XML
import zipfile
"""
Module that extract text from MS XML Word document (.docx).
(Inspired by python-docx <https://github.com/mikemaccana/python-docx>)
"""
WORD_NAMESPACE = '{http://schemas.openxmlformats.org/wordprocessingml/2006/main}'
PARA = WORD_NAMESPACE + 'p'
TEXT = WORD_NAMESPACE + 't'
def get_docx_text(path):
"""
Take the path of a docx file as argument, return the text in unicode.
"""
document = zipfile.ZipFile(path)
xml_content = document.read('word/document.xml')
document.close()
tree = XML(xml_content)
paragraphs = []
for paragraph in tree.getiterator(PARA):
texts = [node.text
for node in paragraph.getiterator(TEXT)
if node.text]
if texts:
paragraphs.append(''.join(texts))
return '\n\n'.join(paragraphs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment