GitHub - ahmadalwareh/Python-docx: Create and modify Word documents with Python

The main purpose of the fork was to add implementation for comments and footnotes to the library

import docx

document = docx.Document()

paragraph = document.add_paragraph('text') # create new paragraph

comment = paragraph.add_comment('comment',author='Obay Daba',initials= 'od') # add a comment on the entire paragraph

paragraph2 = document.add_paragraph('text') # create another paragraph

run = paragraph2.add_run('text1') #add a run to the paragraph

run.add_comment('comment') # add a comment only for the run text 

run.add_comment('comment2')

run_comments = run.comments

paragraph.add_footnote('footnote text') # add a footnote
bitcoin: bc1q9dftn4ndufwzyzkm8ryu0kky0v8y7w00zdah9r