Top "Python-docx" questions

A python library to create, read and write Microsoft Office Word 2007 docx files.

Converting docx to pdf with pure python (on linux, without libreoffice)

I'm dealing with a problem trying to develop a web-app, part of which converts uploaded docx files to pdf files (…

python pdf docx pythonanywhere python-docx
Python-docx, how to set cell width in tables?

How to set cell width in tables?, so far I got: from docx import Document from docx.shared import Cm, …

ms-word python-docx column-width
How to setup cell borders with python-docx

I need to setup cells borders in table with python-docx, but can't find how to. Please help.

python docx python-docx
python -docx to extract table from word docx

I know this is a repeated question but the other answers did not work for me. I have a word …

python python-3.x python-docx
Bullet Lists in python-docx

I am trying to get this to work in python-docx: A bullet list I can get using this: from docx …

python python-docx
Python: Create a "Table Of Contents" with python-docx/lxml

I'm trying to automate the creation of .docx files (WordML) with the help of python-docx (https://github.com/mikemaccana/python-docx). …

python docx wordml python-docx
Read and Write .docx file with python

I have a folder containing several .docx files with names [Code2001.docx, Code2002.docx... Code2154.docx]. I'm trying to write …

python ms-word python-docx
Text-Replace in docx and save the changed file with python-docx

I'm trying to use the python-docx module to replace a word in a file and save the new file with …

python ms-word docx python-docx
docx center text in table cells

So I am starting to use pythons docx library. Now, I create a table with multiple rows, and only 2 columns, …

python python-docx
Creating a table in python docx and bolding text

doc=Document() table = doc.add_table(rows = 13, cols = 5) table.style = 'Table Grid' row = table.rows[0] row.cells[0].text = ('text').bold …

python-docx