This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def shuttle_text(shuttle): | |
t = '' | |
for i in shuttle: | |
t += i.text | |
return t | |
def docx_replace(doc, data): | |
for key in data: | |
for table in doc.tables: |