I want to extract text from a .doc
file, but I want to use it in either fastapi or flash function and upload a file.
So I want to read a buffer string of the .doc
file and extract text?
If I had a file path then I would just do,
import os
os.system("antiword 'files/file.doc'")
But in my case what can I do to extract text? I don't want to use any libraries.