About 50 results
Open links in new tab
  1. Convert .doc files to pdf using python COM interface to Microsoft Word

    May 15, 2011 · How can I convert a Word document in PDF by calling the Word COM interface from Python?

  2. multiple .doc to .docx file conversion using python

    Jul 20, 2016 · I want to convert all the .doc files from a particular folder to .docx file. I tried using the following code, import subprocess import os for filename in os.listdir(os.getcwd()): if filename.

  3. Read .doc file with python - Stack Overflow

    Mar 15, 2016 · 0 This code will run when if you are looking for how to read the doc file in python install the all related packages first and see the result. if doc_file:

  4. How do I render a Word document (.doc, .docx) in the browser using ...

    Jan 15, 2015 · I have successfully done code to display a PDF file in the browser instead of the "Open/Save" dialog. Now, I'm stuck trying to display a Word document in the browser. I want to …

  5. How do I extract data from a doc/docx file using Python

    I know there are similar questions out there, but I couldn't find something that would answer my prayers. What I need is a way to access certain data from MS-Word files and save it in an XML file.

  6. How to list only .doc or .xls files with the Windows dir command in the ...

    Apr 29, 2016 · How to list only .doc or .xls files with the Windows dir command in the cmd window? Asked 9 years, 11 months ago Modified 6 years ago Viewed 10k times

  7. Using --reference-doc with the pandoc Obsidian plugin to export word ...

    Jun 26, 2025 · Since my employer has a fixed format for documents, I needed a way to use the --reference-doc pandoc argument, which pandoc can use to generate a .docx file with a specific style …

  8. Convert Jupyter notebook into MS word document .doc?

    Nov 8, 2018 · In Jupyter Notebook, I am able to convert a notebook to pdf and HTML using nbconvert. However, there is no way to convert it into .doc (Word Document). Is there a way to convert it to MS …

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

    Aug 7, 2018 · doc is an obsolete binary format. docx is a zip file containing XML documents. You can't just read either of them as if they were text files

  10. How do I have multiple versions of my doc with sphinx?

    Mar 4, 2015 · Like the documentation of python or django, how do I have multiple versions of my doc with sphinx ? I saved my doc on git, and I want my user to be able to see documentation for different …