A CLI utility for replacing multi-line strings in files. Supports textual replacements with wildcard matching indentation-aware replacements.
Project description
Multi-Line Replacer (mlr)
Copyright 2025 Caleb Evans
Released under the MIT license
Multi-Line Replacer (mlr) is a CLI utility for replacing multi-line hunks of strings across one or more files. Matching is mostly textual, but wildcard matching is supported, and replacements are indentation-aware.
Installation
You can install multi-line-replacer via your preferred global package manager for Python:
# via pip
pip3 install multi-line-replacer
# via uv
uv tool install multi-line-replacer
# via pipx
pipx install multi-line-replacer
Usage
The workflow takes one or more files on which to run replacements, and then one
or more "replacement rule" files with the -r flag:
mlr .github/workflows/*.yml -r example-rules/uv-gha.md
Each replacement rule must be a Markdown file with one or more pairs of GFM fenced code blocks (see documentation). Every odd code block represents the target text to replace, and every even code block represents the textual replacement. All other Markdown formatting is ignored, so feel free to add headings, explainer text, or anything else!
This rule replaces flake8 with ruff in a Github Actions linting workflow.
## flake8
```yml
- name: Run flake8
run: flake8 MATCH_UNTIL_END_OF_LINE
```
## ruff
```yml
- name: Run ruff
run: |
uv run ruff check .
uv run ruff format --check .
```
[!NOTE] The language specifier at the start of each code block is ignored by the utility. Still, it is highly recommended to specify so that syntax highlighting is enabled in your editor (i.e. it's for you, not the tool).
Wildcard Matching
There are two special wildcard variables:
MATCH_UNTIL_END_OF_LINE([^\n]*)MATCH_ALL_BETWEEN([^\n]*?)
These variables can be used anywhere in any code block representing the target
text to match. Because these names are unique enough, word boundaries are not
required around them (e.g. vMATCH_UNTIL_END_OF_LINE is allowed).
More Examples
To better understand the expected rules format and what's allowed, please see
the example-rules directory.
About
Multi-Line Replacer was built as my solution to an intermediate need I had while writing a large migration script. I had 17 Python projects using old tooling, and the script was written to migrate these projects to uv and ruff.
Part of this migration process necessitated performing textual replacements on multi-line hunks of code. Regular expressions and editors like VS Code could somewhat achieve this, although they required escaping special characters and carefully specifying indentation. In other words, those tools proved to be too rigid and inflexible.
Given these constraints, I conceived of a utility that could perform multi-line replacements with a friendlier authoring experience and greater indentation awareness. The implementation took several iterations to achieve positive results, but by the end, it contributed significantly to the successful migration of all 17 projects. From there, I decided to release it to the world as a more flexible and automated system for replacing multi-line hunks of code.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file multi_line_replacer-1.0.0.tar.gz.
File metadata
- Download URL: multi_line_replacer-1.0.0.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.7.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0def11f439ada9144eb62ca4d3f962f66a42d5cbbbe8e53875ce2661718d77a3
|
|
| MD5 |
c2a19dc1b49d60872d3f47ef8eecac8d
|
|
| BLAKE2b-256 |
41aeb93543edf091234ac7e7c9d258ed5ff1922d8a7d7511972e9bbbcb5f049c
|
File details
Details for the file multi_line_replacer-1.0.0-py3-none-any.whl.
File metadata
- Download URL: multi_line_replacer-1.0.0-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.7.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df7d4c012afccd4b888e0da721ea8d462270c9d80308834a8d777d58c7a9f524
|
|
| MD5 |
168ce9e14da639d4b9637032ce3680da
|
|
| BLAKE2b-256 |
121a5b9677cd30870537bebaac0f7523e4336ab2aa6c1940d301a1071d840458
|