I am using python-docx 0.7.6.
I can\'t seem to be able to figure out how to set font family and size for a certain paragraph.
There is .style pr
This is how to set the Normal style to font Arial and size 10pt.
from docx.shared import Pt
style = document.styles['Normal']
font = style.font
font.name = 'Arial'
font.size = Pt(10)
And this is how to apply it to a paragraph.
paragraph.style = document.styles['Normal']
Using the current version of python-docx (0.8.5).