Replace words inside a Word document without losing format
Project description
python-docx-replace
This library was built on top of python-docx and the main purpose is to replace words inside a document without losing the format.
Let's explain the process behind the library:
First way, losing formatting
One of the ways to replace a key inside a document is by doing something like the code below. Can you do this? YES! But you are going to lose all the paragraph formatting.
key = "${name}"
value = "Ivan"
for p in _get_all_paragraphs(doc):
if key in p.text:
p.text = p.text.replace(key, value)
Second way, not all keys
Using the python-docx library, each paragraph has a couple of runs which is a proxy for objects wrapping <w:r> element. We are going to tell more about it later and you can see more details in the doc.
You can try replacing the text inside the runs and if it works, then your job is done:
key = "${name}"
value = "Ivan"
for p in _get_all_paragraphs(doc):
for run in p.runs:
if key in run.text:
run.text = run.text.replace(key, value)
The problem here is that the key can be broken in more than one run, and then you won't be able to replace it, for example:
It's going to work:
Word Paragraph: "Hello ${name}, welcome!"
Run1: "Hello ${name}, w"
Run2: "elcome!"
It's NOT going to work:
Word Paragraph: "Hello ${name}, welcome!"
Run1: "Hello ${na"
Run2: "me}, welcome!"
You are probably wondering, why does it break paragraph text this way? What are the purpose of the run?
Imagine a Word document with this format:
Considering this, what would the format be after parsing the key? Highlighted yellow? Bold and underline? Red with another font? All of them?
That's the purpose of runs, each run hides their sets.
The final format will be the format that is present in the $ character. All of the others key's characters and their formats will be discarded. In the example above, the final format will be highlighted yellow.
Solution
The solution adopted is quite simple. First we try to replace in the simplest way, as in the previous example. If it's work, great, all done! If it's not, we build a table of indexes:
key = "${name}"
value = "Ivan"
Word Paragraph: "Hello ${name}, welcome!"
Run1: "Hello ${na"
Run2: "me}, welcome!"
Word Paragraph: 'H' 'e' 'l' 'l' 'o' ' ' '$' '{' 'n' 'a' 'm' 'e' '}' ',' ' ' 'w' 'e' 'l' 'c' 'o' 'm' 'e' '!'
Char Indexes: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Run Index: 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1
Run Char Index: 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 10 11 12
Here we have the char indexes, the index of each run by char index and the run char index by run. A little confusing, right?
With this table we can process and replace all the keys, getting the result:
# REPLACE PROCESS:
Char Index 6 = p.runs[0].text = "Ivan" # replace '$' by the value
Char Index 7 = p.runs[0].text = "" # clean all the others parts
Char Index 8 = p.runs[0].text = ""
Char Index 9 = p.runs[0].text = ""
Char Index 10 = p.runs[1].text = ""
Char Index 11 = p.runs[1].text = ""
Char Index 12 = p.runs[1].text = ""
After that, we are going to have:
Word Paragraph: 'H' 'e' 'l' 'l' 'o' ' ' 'Ivan' '' '' '' '' '' '' ',' ' ' 'w' 'e' 'l' 'c' 'o' 'm' 'e' '!'
Indexes: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Run Index: 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1
Run Char Index: 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 10 11 12
All done, now you Word document is fully replaced keeping all the format.
How to use
Via PyPI
pip3 install python-docx-replace
Vanilla
Grab the docx_replace.py file from the src folder and be happy!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for python-docx-replace-0.0.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44c851e2e32b2517e03f989eb03efb8de424e987443464e21400b2cd1f213ce2 |
|
MD5 | d814202433be54b2bf91b2d5ba0f6682 |
|
BLAKE2b-256 | b5a026dba2faaca77cf0cdd916088eb052020a5d86759657baee11ea941e8b29 |
Hashes for python_docx_replace-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9705e75eaceca398077a4b3edcb21d809ce2086eb8cf9e305b59d8e2ec86c7d6 |
|
MD5 | d7628f47f9669560ae3b88cf079e1f37 |
|
BLAKE2b-256 | 226dca698c541e702c4c720d806b4d0bb498954ff9c9db43241bfb89f6d8aaa4 |