Skip to content

Instantly share code, notes, and snippets.

@arangates
Created March 14, 2022 00:41
Show Gist options
  • Save arangates/b9faf6906ed91323b6cb7604259ed3af to your computer and use it in GitHub Desktop.
Save arangates/b9faf6906ed91323b6cb7604259ed3af to your computer and use it in GitHub Desktop.
[ypdf
# %%
from docx import Document
# %%
document = Document('./sample.docx')
# %%
paragraphs = document.paragraphs
# %%
for para in paragraphs:
if para.alignment is None and para.style.name == 'ECA_Level2_ASML':
print(para.text)
print('\n')
# %%
from docx2pdf import convert
# %%
convert('~/Documents/asml_learning/sample.docx', '~/Documents/asml_learning/output.pdf')
# %%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment