Read .Doc File with Python

Read documents(Python)

You are trying to open a document with the extension .docx, which cannot be done with the open() function. Instead, you can try using the docx2txt library, as follows:

import docx2txt
my_text = docx2txt.process("test.docx")
print(my_text)

Reading .doc file in Python using antiword in Windows (also .docx)

You can use antiword command line utility to do this, I know most of you would have tried it but still I wanted to share.

  • Download antiword from here
  • Extract the antiword folder to C:\ and add the path C:\antiword to your PATH environment variable.

Here is a sample of how to use it, handling docx and doc files:

import os, docx2txt
def get_doc_text(filepath, file):
if file.endswith('.docx'):
text = docx2txt.process(file)
return text
elif file.endswith('.doc'):
# converting .doc to .docx
doc_file = filepath + file
docx_file = filepath + file + 'x'
if not os.path.exists(docx_file):
os.system('antiword ' + doc_file + ' > ' + docx_file)
with open(docx_file) as f:
text = f.read()
os.remove(docx_file) #docx_file was just to read, so deleting
else:
# already a file with same name as doc exists having docx extension,
# which means it is a different file, so we cant read it
print('Info : file with same name of doc exists having docx extension, so we cant read it')
text = ''
return text

Now call this function:

filepath = "D:\\input\\"
files = os.listdir(filepath)
for file in files:
text = get_doc_text(filepath, file)
print(text)

This could be good alternate way to read .doc file in Python on Windows.

Hope it helps, Thanks.



Related Topics



Leave a reply



Submit